/** * On/off switch; spruce when on. For live state, not form options. */ export interface SwitchProps { label?: React.ReactNode; checked?: boolean; onChange?: (e: React.ChangeEvent) => void; disabled?: boolean; style?: React.CSSProperties; } export declare function Switch(props: SwitchProps): JSX.Element;