import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { textColor: string; textLineHeight: string; textFontWeight: string; textFontSize: string; titleTextColor: string; titleLineHeight: string; titleFontWeight: string; titleFontSize: string; borderColor: string; borderRadius: string; boxShadow: string; colorEmbedded: string; dividerColor: string; dropDownBgColor: string; }; export type CardListThemeVars = ReturnType; declare const cardListLight: Theme<'CardList', CardListThemeVars>; export default cardListLight; export type CardListTheme = typeof cardListLight;