import type { ThemeCommonVars } from '../../_styles/common'; import type { Theme } from '../../_mixins'; export declare function self(vars: ThemeCommonVars): { textColor: string; color: string; colorHover: string; colorModal: string; colorHoverModal: string; colorPopover: string; colorHoverPopover: string; borderColor: string; borderColorModal: string; borderColorPopover: string; borderRadius: string; fontSize: string; }; export type ListThemeVars = ReturnType; declare const listLight: Theme<'List', ListThemeVars>; export default listLight; export type ListTheme = typeof listLight;