export declare type SwitchProps = { /** The size of the switch button, in pixels */ size?: number; /** The label of the switch */ label?: string; /** Handler for the switch event. */ onSwitched?: (enabled: boolean) => void; /** Default switch state */ state?: boolean; }; /** Switches are a pleasant interface for toggling a value between two states, and offer the same semantics and keyboard navigation as native checkbox elements. */ export declare const Switch: ({ onSwitched, size, label, state, }: SwitchProps) => JSX.Element;