/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import React from 'react';
import { type ToggleProps } from './types';
/**
 * __Toggle__
 *
 * A toggle is used to view or switch between enabled or disabled states.
 *
 * - [Examples](https://atlassian.design/components/toggle/examples)
 * - [Code](https://atlassian.design/components/toggle/code)
 * - [Usage](https://atlassian.design/components/toggle/usage)
 */
declare const Toggle: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<ToggleProps, "ref"> & React.RefAttributes<HTMLInputElement>>>;
export default Toggle;
