import * as TogglePrimitive from '@radix-ui/react-toggle';
/**
 * A two-state button that can be either on or off.
 *
 * - [Docs](https://www.radix-ui.com/docs/primitives/components/toggle)
 * - [API Reference](https://www.radix-ui.com/primitives/docs/components/toggle#api-reference)
 */
declare const Toggle: import('react').ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & import('react').RefAttributes<HTMLButtonElement>, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;
export { Toggle };
