import { AuthConfiguration } from '../modules/auth.configuration'; export declare class OidcSecurityCommon { private authConfiguration; private storage; storage_access_token: string; storage_id_token: string; storage_is_authorized: string; storage_user_data: string; storage_auth_nonce: string; storage_auth_state_control: string; storage_well_known_endpoints: string; constructor(authConfiguration: AuthConfiguration); retrieve(key: string): any; store(key: string, value: any): void; resetStorageData(): void; getAccessToken(): any; logError(message: any): void; logWarning(message: any): void; logDebug(message: any): void; }