import { SwitchProps } from '@mui/material'; import { ITypography } from '../typography/typography'; export interface ISwitchProps extends SwitchProps { label?: string; labelPosition?: "start" | "end"; typographyProps?: ITypography; } declare const ToggleSwitch: React.FC; export default ToggleSwitch;