import { ToggleProps } from './toggle.types'; /** * Toggle represents an action that changes a state by clicking on it. * They are usually used for actions or options that have an immediate effect on the UI. * They usually do not need to be confirmed or reviewed. * * ### Usage * * ```tsx * import { Toggle } from '@bloomreach/react-banana-ui'; * * export default function MyCustomToggle() { * return ; * } * ``` */ declare const Toggle: import('react').ForwardRefExoticComponent>; export default Toggle;