/// import "./Switch.scss"; export type SwitchProps = { isGradient?: boolean; }; declare const CustomSwitch: ({ isGradient }: SwitchProps) => JSX.Element; export default CustomSwitch;