///
import { SwitchProps, FormControlLabelProps } from '@mui/material';
import { IFormComponentProps } from '../type';
/**
* BaseFormSwitch Props
* @date 2023/4/1 - 17:02:59
*
* @export
* @typedef {BaseFormSwitchProps}
*/
export type BaseFormSwitchProps = IFormComponentProps;
/**
* 开关 implementat by MUI.FormControlLabel and MUI.Switch
* @date 2023/4/1 - 17:01:09
* @formBase
* @param {BaseFormSwitchProps} { value, labelProps, onChange, ...prop }
* @returns {*}
*/
export declare const BaseFormSwitch: ({ value, labelProps, onChange, ...prop }: BaseFormSwitchProps) => JSX.Element;
//# sourceMappingURL=formSwitch.d.ts.map