@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
12 lines • 421 B
TypeScript
import type React from 'react';
import type { ReactElement } from 'react';
import { FormControlLabelProps } from '@mui/material';
interface FormControlProps extends FormControlLabelProps {
control: ReactElement;
label: string;
value?: string;
children?: string;
}
declare const FormControlLabel: React.FC<FormControlProps>;
export default FormControlLabel;
//# sourceMappingURL=form-control-label.d.ts.map