export type FieldValue = string | number | boolean | Date | null | string[] | number[] | boolean[]; export type FormFieldOption = { label: string; value: FieldValue; }; export declare const convertEnum: (values: any, skipEmpty?: boolean) => FormFieldOption[]; export declare const convertList: (values: Array>, keyAttr: string, valueAttr: string) => FormFieldOption[];