import * as React from 'react'; import type { FieldComponentProps } from '../base-field'; interface SwitchFieldProps extends Omit, 'type' | 'auxiliaryLabel' | 'maxWidth' | 'aria-describedby' | 'aria-label' | 'aria-labelledby'> { /** * Identifies the element (or elements) that describes the switch for assistive technologies. */ 'aria-describedby'?: string; /** * Defines a string value that labels the current switch for assistive technologies. */ 'aria-label'?: string; /** * Identifies the element (or elements) that labels the current switch for assistive technologies. */ 'aria-labelledby'?: string; } declare const SwitchField: React.ForwardRefExoticComponent & React.RefAttributes>; export { SwitchField }; export type { SwitchFieldProps };