import React from 'react'; import type { DisabledProps, FocusProps, OutlinedProps } from '../../mixins'; import type { InputHTMLAttributes } from '../../types'; import type { ControlProps } from '../Basebox/Basebox'; interface PressedProps { pressed?: boolean; } export interface SwitchProps extends ControlProps, DisabledProps, PressedProps, FocusProps, OutlinedProps, Omit, 'onChange' | 'onFocus' | 'onBlur'>, Pick, 'name' | 'value' | 'checked' | 'disabled' | 'readOnly' | 'onChange' | 'onFocus' | 'onBlur'> { } /** * Визуальный переключатель между двумя взаимоисключающими состояниями — вкл. и выкл. */ export declare const Switch: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Switch.d.ts.map