export declare function generateState(length?: number): string;
export declare function generateCodeChallengeS256(codeVerifier: string): Promise<string>;
export declare function generatePkcePair(): Promise<{
    codeVerifier: string;
    codeChallenge: string;
}>;
