export declare const clientAtom: import("jotai").PrimitiveAtom<import("@urql/core").Client> & {
    init: import("@urql/core").Client;
};
declare type Awaited<T> = T extends Promise<infer V> ? V : T;