/// import type { UiColors } from '../../../common/types'; type SwitchProps = { name: string; status?: 'off' | 'on'; state?: 'normal' | 'disabled'; backgroundColorTheme?: UiColors; onClick?: (status: boolean) => void; }; declare function Switch({ name, status, state, backgroundColorTheme, onClick }: SwitchProps): JSX.Element; export default Switch;