import { AuthParameters } from '../../authParameters'; import { WithPkceParams } from '../../pkceService'; export declare const mockPkceValues: { code_challenge: string; code_challenge_method: string; }; export declare const defaultScope = "openid profile email phone"; export declare const scope: { scope: string; }; export declare const token: { responseType: string; }; export declare const code: { responseType: string; redirectUri: string; }; type TknType = { tkn: string; }; export declare const tkn: TknType; export declare const email: { email: string; password: string; }; export declare const phone: { phone_number: string; password: string; }; type ClientType = { isPublic: boolean; }; export declare const pblic: { isPublic: boolean; }; export declare const confidential: { isPublic: boolean; }; export declare const webMessage: { responseMode: string; prompt: string; }; export declare const pageDisplay: Pick; export declare const popupDisplay: Pick; export declare function getExpectedQueryString(params: ClientType & WithPkceParams & Partial): string; export {};