import { default as React, ChangeEventHandler } from 'react'; export type SwitchInputProps = { /** * Whether the SwitchInput should be checked */ isChecked: boolean; /** * Handler called when the SwitchInput's state changes */ onChange: ChangeEventHandler; /** * The element's unique identifier */ id?: string; /** * className for the element */ className?: string; /** * Name of the input element */ name?: string; /** * Whether the input is disabled. Default to false */ isDisabled?: boolean; }; /** * @deprecated Please use SwitchField instead. */ export declare const SwitchInput: ({ className, id, name, isDisabled, isChecked, onChange, ...rest }: SwitchInputProps) => React.JSX.Element; //# sourceMappingURL=SwitchInput.d.ts.map