import { default as React } from 'react';
import { default as IToggleProps } from './IToggleProps';
/**
* Toggle component for toggling between two states
* @param props {@link IToggleProps} - The props for the Toggle component
* @returns A Toggle component
*
* @example
* ```tsx
* function App() {
* const [value, setValue] = useState(true);
*
* return (
*
* )
* }
* ```
*/
declare const Toggle: React.FC;
export default Toggle;