import type { PageInfo as IPageInfo } from "graphql-relay";
export declare class PageInfo implements IPageInfo {
    readonly startCursor: string | null;
    readonly endCursor: string | null;
    readonly hasPreviousPage: boolean;
    readonly hasNextPage: boolean;
}
