import { FC } from "react"; import { CommonControlProps } from "../../types"; export interface SwitchProps extends CommonControlProps { value: boolean; onChange: (val: boolean) => void; } declare const Switch: FC; export default Switch;