import type { Theme } from '../../_mixins/use-theme'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { titleFontSize: string; titleLineHeight: string; titleFontWeight: string; dividerColor: string; titleTextColor: string; titleTextColorDisabled: string; fontSize: string; lineHeight: string; textColor: string; arrowSize: string; arrowColor: string; arrowColorDisabled: string; titlePadding: string; backgroundColor: string; borderRadius: string; padding: string; boxSizing: string; iconBorder: string; iconBorderRadius: string; iconBackground: string; }; export type CollapseThemeVars = ReturnType; declare const collapseLight: Theme<'Collapse', CollapseThemeVars>; export default collapseLight; export type CollapseTheme = typeof collapseLight;