import type { Moment } from 'moment'; import { IRowDataPropsType } from './propsType'; export declare const rangePickerTransform: (formatter?: string) => { normalize: (value: [Moment, Moment]) => { from?: undefined; to?: undefined; } | { from: string; to: string; }; getValueProps: (value: { from: string; to: string; }) => { format: string; value: Moment[]; }; getValueFromEvent: (rawDate?: any) => any; }; export declare const datePickerTransform: (formatter?: string) => { normalize: (value: Moment) => string; getValueProps: (value: string) => { format: string; value: Moment; }; }; export declare const transformColumns: (columns: any[], form: any, disabled: Boolean) => any[]; export declare const formatList: (list: IRowDataPropsType[]) => IRowDataPropsType[]; export declare const getRandom: () => string;