import React from "react"; import { ControlsProps } from "../../common/controls.type"; interface Props extends Pick { value: boolean; onChange: (status: boolean) => void; } declare const Switch: ({ value, onChange, disabled }: Props) => React.JSX.Element; export default Switch;