export interface IPagination { has_previous: boolean; has_next: boolean; start_cursor: string; end_cursor: string; } export declare class Pagination implements IPagination { has_previous: boolean; has_next: boolean; start_cursor: string; end_cursor: string; constructor(pagination?: IPagination); }