import { ColorsType, IBoolean, MainSizesType } from '../../types'; export interface SwitchTheme { root: SwitchRootTheme; toggle: SwitchToggleTheme; } export interface SwitchRootTheme { base: string; active: IBoolean; label: string; } export interface SwitchToggleTheme { base: string; sizes: MainSizesType; color: ColorsType; handler: SwitchHandlerTheme; } export interface SwitchHandlerTheme { base: string; } export declare const switchTheme: SwitchTheme; //# sourceMappingURL=theme.d.ts.map