type SwitchProps = { value: boolean; id: string; children?: JSX.HTMLAttributes['children']; disabled?: boolean; noLabel?: boolean; small?: boolean; onChange: (b: boolean) => void; }; export declare function Switch({ value, small, children, noLabel, onChange, ...props }: SwitchProps): JSX.Element; export {};