import { FC } from "react"; interface Props { id: string; text: string; tooltip: string; toggle: () => void; disabled?: boolean; checked: boolean; style?: any; } declare const Toggle: FC; export default Toggle;