import { Edge } from '../interfaces/relay-paginated.interface'; import { ObjectLiteral } from 'typeorm'; export declare class PageInfo { startCursor: string; endCursor: string; hasPreviousPage: boolean; hasNextPage: boolean; constructor(edges: Edge[], options?: { hasPreviousPage: boolean; hasNextPage: boolean; }); }