import type { ComponentProps, FC } from 'react'; import { DeepPartial } from '..'; import { FlowbiteBoolean, FlowbiteColors } from '../Flowbite/FlowbiteTheme'; export interface FlowbiteToggleSwitchTheme { base: string; active: FlowbiteBoolean; toggle: { base: string; checked: FlowbiteBoolean & { color: FlowbiteColors; }; }; label: string; } export type ToggleSwitchProps = Omit, 'onChange'> & { checked: boolean; label: string; color?: FlowbiteColors; onChange: (checked: boolean) => void; theme?: DeepPartial; }; export declare const ToggleSwitch: FC;