/// export declare type CaSwitchProps = { value: boolean; onChange: (checked: boolean) => void; }; declare function CaSwitch({ value, onChange }: CaSwitchProps): JSX.Element; export default CaSwitch;