import { ReturnTypeFuncValue } from "@nestjs/graphql"; declare type Constructor = { new (...args: any[]): any; }; export declare class PageInfo { startCursor: string; endCursor: string; hasPreviousPage: boolean; hasNextPage: boolean; } export declare function ConnectionFilterArgsType(): (target: T) => Constructor; export declare function ConnectionOrderingInputType(): (target: T) => Constructor; export declare function ConnectionEdgeObjectType(nodeType: V): (target: T) => Constructor; export declare function ConnectionObjectType(edgeType: V): (target: T) => Constructor; export {};