import { AuthenticationResult, PopupConfigOptions } from './global'; export declare const parseQueryResult: (queryString: string) => AuthenticationResult; export declare const runIframe: (authorizeUrl: string, eventOrigin: string, timeoutInSeconds?: number) => Promise; export declare const openPopup: (url: string) => Window; export declare const runPopup: (config: PopupConfigOptions) => Promise; export declare const getCrypto: () => Crypto; export declare const getCryptoSubtle: () => any; export declare const createRandomString: () => string; export declare const encode: (value: string) => string; export declare const decode: (value: string) => string; export declare const createQueryParams: (params: any) => string; export declare const sha256: (s: string) => Promise; export declare const urlDecodeB64: (input: string) => string; export declare const bufferToBase64UrlEncoded: (input: number[] | Uint8Array) => string; export declare const validateCrypto: () => void;