import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { borderRadius: string; titleFontSize: string; titleFontWeight: string; titleLineHeight: string; descriptionFontSize: string; descriptionFontWeight: string; descriptionLineHeight: string; footerFontSize: string; footerFontWeight: string; footerLineHeight: string; iconSize: string; backgroundColor: string; backgroundColorFocus: string; backgroundColorHover: string; backgroundColorChecked: string; color: string; colorFocus: string; colorHover: string; colorChecked: string; backgroundColorPrimary: string; backgroundColorFocusPrimary: string; backgroundColorHoverPrimary: string; backgroundColorCheckedPrimary: string; colorPrimary: string; colorFocusPrimary: string; colorHoverPrimary: string; colorCheckedPrimary: string; backgroundColorDisabled: string; backgroundColorFocusDisabled: string; backgroundColorHoverDisabled: string; backgroundColorCheckedDisabled: string; colorDisabled: string; colorFocusDisabled: string; colorHoverDisabled: string; colorCheckedDisabled: string; padding: string; titleMarginBottom: string; descriptionMarginBottom: string; iconMargin: string; }; export type ToggleButtonThemeVars = ReturnType; declare const toggleButtonLight: Theme<'ToggleButton', ToggleButtonThemeVars>; export default toggleButtonLight; export type ToggleButtonTheme = typeof toggleButtonLight;