import { Dayjs } from '../../utils/dayjsUtil'; export declare const InvalidFieldValue: string; export declare function transformDate(date: Dayjs | string | null, format: string): string; export declare function transformDate(date: (Dayjs | string)[], format: string): string[]; export declare function transformFormValues(values: any, transforms: any, currentLevelValues?: any): any; export type TNames = (null | undefined | string | string[])[]; export declare const transformValueToNames: (value: string[], currentLevelValues: any, names?: TNames) => string | string[];