import { ComponentProps, FC } from 'react'; import { Colors, DeepPartial, MainSizes } from '../../types/types'; import { SwitchTheme } from './theme'; export type SwitchProps = Omit, "onChange"> & { checked?: boolean; color?: Colors; size?: MainSizes; label?: string; onChange?: (checked: boolean) => void; theme?: DeepPartial; keys?: { true?: string[]; false?: string[]; toggle?: string[]; }; }; export declare const Switch: FC; //# sourceMappingURL=Switch.d.ts.map