import { IFormField } from "@manojadams/metaforms-core"; import { TValue } from "@manojadams/metaforms-core/dist/constants/types"; declare class MuiFormUtil { static getDisplayLabel(form: IFormField): string | undefined; /** * Get checkbox value - checkbox should contain only string values * @param value * @returns */ static getCheckboxValue(value: Exclude): string | null | undefined; } export default MuiFormUtil;