import { FunctionComponent } from "react"; export interface ToggleProps { isOn: boolean; handleToggle: () => void; } /** * ToggleSwitch is a controlled component, depending on the state it is in, * it will render the on or off text accordingly * @param isOn state of toggle * @param handleToggle toggle handler, a callback that invokes if the state * changes */ export declare const ToggleSwitch: FunctionComponent;