import { default as React } from 'react'; import { ToggleProps } from './../../'; export interface ToggleFieldProps extends ToggleProps { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * ID to identify input and corresponding label. */ id: string; /** * The text displayed to identify the input. */ label: string; /** * Controls whether the label will be displayed or not. */ displayLabel?: boolean; /** * Specifies that this input should be disabled. */ disabled?: boolean; /** * Controls the component's direction. */ variant?: 'horizontal' | 'vertical'; } declare const ToggleField: React.ForwardRefExoticComponent>; export default ToggleField; //# sourceMappingURL=ToggleField.d.ts.map