export type PkceParams = { codeChallenge: string; codeChallengeMethod: string; }; export type WithPkceParams = T & Partial; export declare function computePkceParams(): Promise;