import type { ComponentPropsWithRef, ElementType } from 'react'; export type SwitchProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Binary control that allows users to toggle between two states, such as on/off. * @docs {@link https://design.visa.com/components/switch/?code_library=react | See Docs} * @related switch-label * @vgar TODO * @wcag TODO */ declare const Switch: { ({ className, tag: Tag, ...remainingProps }: SwitchProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Switch;