import { IObject } from './type'; export declare const detialList: ({ label: string; colon: boolean; key: string; } | { label: string; key: string; colon?: undefined; })[]; export declare function tableDataFormat(data: any): IObject; export declare function getValue(params: string | number): string; export declare const formTypes: { Input: { type: string; setPlaceholder: (text: any) => string; }; Select: { type: string; setPlaceholder: (text: any) => string; }; DateTimeRange: { type: string; props: { showTime: boolean; }; }; NumberRange: { type: string; setPlaceholder: (text: any) => string[]; }; };