/// import { CheckboxProps, FormControlLabelProps } from '@mui/material'; import { IFormComponentProps } from '../type'; /** * BaseFormCheckbox Component Props; extends CheckboxProps and IFormComponentProps * @date 2023/4/1 - 16:49:21 * * @export * @typedef {BaseFormCheckboxProps} */ export type BaseFormCheckboxProps = IFormComponentProps; /** * BaseFormCheckbox extends MUI.FormControlLabel * @date 2023/4/1 - 16:48:06 * @formBase * @param {BaseFormCheckboxProps} { value, label, labelProps, onChange, ...prop } * @returns {*} */ export declare const BaseFormCheckbox: ({ value, label, labelProps, onChange, ...prop }: BaseFormCheckboxProps) => JSX.Element; //# sourceMappingURL=formCheckbox.d.ts.map