import { type LabelProperties } from '../label'; export type SwitchLabelProperties = LabelProperties; /** * Label to be used with switch component. * @docs {@link https://design.visa.com/components/switch/?code_library=react | See Docs} */ declare const SwitchLabel: { ({ className, ...remainingProps }: SwitchLabelProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default SwitchLabel;