import * as React from 'react'; import { IHasRawProps, IHasCX, IDisableable, IEditable, IHasLabel, IAnalyticableOnChange, IHasTabIndex, ICanFocus } from '@epam/uui-core'; export interface SwitchProps extends IHasCX, IDisableable, Omit, 'isInvalid'>, IHasLabel, IAnalyticableOnChange, IHasRawProps>, IHasTabIndex, ICanFocus { /** ID to put on 'input' node */ id?: string; } export declare const Switch: React.ForwardRefExoticComponent>; //# sourceMappingURL=Switch.d.ts.map