import { default as React } from 'react'; import { BaseComponentProps, ComponentEvent } from '../types'; interface InputSwitchProps extends BaseComponentProps, Omit, 'onChange' | 'size' | 'type'> { checked?: boolean; onChange?: (event: ComponentEvent) => void; onLabel?: string; offLabel?: string; label?: string; ariaLabel?: string; required?: boolean; id?: string; } export declare const InputSwitch: React.ForwardRefExoticComponent>; export {};