import { InputHTMLAttributes, default as React } from 'react';
export interface ToggleProps extends InputHTMLAttributes> {
/**
* 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;
/**
* Specifies that this input should be disabled.
*/
disabled?: boolean;
/**
* Controls the component's direction.
*/
variant?: 'horizontal' | 'vertical';
}
declare const Toggle: React.ForwardRefExoticComponent>;
export default Toggle;
//# sourceMappingURL=Toggle.d.ts.map