//#region src/types/common.d.ts
type StringOrNumber = string | number;
type KeyValueOption = Record<string, any>;
type StrNumObjOption = StringOrNumber | KeyValueOption;
type StrObjOption = string | KeyValueOption;
type CustomComponentIds = Partial<{
  field: string;
  label: string;
  helperText: string;
  error: string;
}>;
//#endregion
export { CustomComponentIds, KeyValueOption, StrNumObjOption, StrObjOption, StringOrNumber };