import { TSwitchLabelPosition, TSwitchProps, TSwitchSize, TSwitchType } from './Switch.type'; import { HTMLInputTypeAttribute } from 'react'; export declare const SWITCH_SIZES: TSwitchSize[]; export declare const SWITCH_SIZE: { [key in TSwitchSize]: key; }; export declare const SWITCH_TYPES: TSwitchType[]; export declare const SWITCH_TYPE: { [key in TSwitchType]: key; }; export declare const INPUT_TYPE: { [key in Extract]: key; }; export declare const SWITCH_LABEL_POSITIONS: TSwitchLabelPosition[]; export declare const SWITCH_LABEL_POSITION: { [key in TSwitchLabelPosition]: key; }; export declare const SWITCH_DEFAULT_PROPS: TSwitchProps;