export type WithCount<T> = {
    docs: Array<T>;
    total: number;
};
