import type { DataGridColumns, DataGridRowOptionColumns, DataGridRowOptions, DataGridRowWithOptions } from './types'; type DataType = { id: string; documentName?: string; recipient?: string; createDate: string; actions?: object; }; type TreeDataType = { id: string; documentName: string; recipient: string; createDate: string; actions?: object; }; export declare const makeRandomDate: () => string; export declare const makeColumns: (columnsTemplate: DataGridColumns[], mergedColumns?: DataGridColumns[]) => DataGridColumns[]; export declare const makeDataList: >(dataObjTemplate: TData, options?: DataGridRowOptions | undefined) => DataGridRowWithOptions[]; export declare const makeDataListWithTree: (length?: number, options?: { isNotSelectable?: boolean; childrenCount?: number; childrenColumns?: DataGridRowOptionColumns[]; }) => TreeDataType[]; export {};