export type Distribution = { total: number; byType: Partial> | null; }; export declare function extendDistribution(count: number, type: T, current?: Distribution): Distribution;