import { CommonComponentProps } from "Types/common"; type SwitchProps = CommonComponentProps & { onSwitch: (value: boolean) => void; value: boolean; }; export default function Switch(props: SwitchProps): JSX.Element; export {};