export declare type Paginated<TResult = any> = {
    total: number;
    items: TResult[];
    hasMore: boolean;
    cursor: number;
};
