import type { ComponentPropsWithRef, ElementType } from 'react'; export type ToggleProperties = { /** Icons only toggle button */ iconOnly?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Selection element that allows users to switch between states or views. * @docs {@link https://design.visa.com/components/toggle-button/?code_library=react | See Docs} * @related toggle-container * @vgar TODO * @wcag TODO */ declare const Toggle: { ({ className, iconOnly, tag: Tag, ...remainingProps }: ToggleProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Toggle;