export declare const isNode: boolean;
export declare function generateCodeVerifier(): Promise<string>;
export declare function generateCodeChallenge(codeVerifier: string): Promise<string>;
export declare function toBase64Url(arr: Uint8Array): string;