export type CategoryStats = Record; export interface GetCategoriesStatsOptions { /** * Property name to use for categorization * @default 'category' */ propertyName?: string; } /** * Get statistics about categories in metadata * @param metadata - Array of metadata objects * @param options - Options for categorization * @returns Object with category statistics */ export declare function getCategoriesStats(metadata: Array>, options?: GetCategoriesStatsOptions): CategoryStats; //# sourceMappingURL=getCategoriesStats.d.ts.map