import { type DataGridRowOptionColumns } from '../NewDataGrid'; type DataType = { id: string; documentName: string; recipient: string; createDate: string; actions?: object; }; export declare const makeRandomDate: () => string; export declare const makeDataList: (length?: number, options?: { isDisabled?: boolean; isDisabledLastCell?: boolean; disabledReason?: string; }) => DataType[]; export declare const makeDataListWithTree: (length?: number, options?: { isNotSelectable?: boolean; childrenCount?: number; childrenColumns?: DataGridRowOptionColumns[]; }) => DataType[]; export {};