export declare const GraphQLContextTokenResolver: (context: {
    req: {
        headers: Record<string, string>;
        cookies: Record<string, string>;
    };
}) => Promise<{
    token: string | null;
}>;
