import { IdentifierSqlToken } from "slonik"; export declare type OrderDirection = "ASC" | "DESC"; export declare type ColumnIdentifiers = Record; export interface PageInfo { hasNextPage: boolean; hasPreviousPage: boolean; startCursor: string | null; endCursor: string | null; } export interface Connection { edges: (TResult & { node: TResult; cursor: string; })[]; count: number; pageInfo: PageInfo; }