import React from 'react'; export interface SwitchProps { value?: any; visible?: any; onChange?: any; onValueRelease?: any; defaultChecked?: boolean; getCompPropMapState?: any; compId?: any; name?: any; fieldName?: any; required?: any; hidden?: any; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; selfSpan?: any; colSpan?: any; style?: any; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; colon?: boolean; switchStyle?: string; checkedChildren?: string; unCheckedChildren?: string; checkedChildrenIcon?: any; unCheckedChildrenIcon?: any; size?: any; isFormChild?: boolean | undefined; rules?: any[]; tipSize?: string; tipWidth?: string; tipHeight?: string; getEngineApis?: any; } declare const Switch: React.ForwardRefExoticComponent>; export default Switch;