import { TypedDocumentNode } from 'urql'; declare const getTokenIss: (token: string) => string; declare const isExpiredToken: (token: string) => boolean; declare const getRequestData: (query: TypedDocumentNode, variables: TVariables) => { method: string; headers: { "Content-Type": string; }; body: string; }; declare class InvariantError extends Error { constructor(message: string); } declare function invariant(condition: unknown, message?: string): asserts condition; export { InvariantError, getRequestData, getTokenIss, invariant, isExpiredToken };