type TStats = { count: number; size: number; size_pretty: string; }; export type TGetDatabaseStatisticsResponse = { documents: TStats; dict: TStats; total: TStats; }; export {};