export interface PagingInfo { amount: number; start_cursor: string; end_cursor: string; has_previous: boolean; has_next: boolean; } export declare const pagingDefaults: { amount: number; start_cursor: string; end_cursor: string; has_previous: boolean; has_next: boolean; }; export interface ExtendedPagingInfo extends PagingInfo { handleClickNext: (after_cursor: string) => void; handleClickPrevious: (before_cursor: string) => void; } export declare const ExtendedPagingDefaults: ExtendedPagingInfo;