import { Account } from "./Account"; /** * Key-Value type to support queryParams and extraQueryParams */ export declare type QPDict = { [key: string]: string; }; /** * @link AuthenticationParameters}AuthenticationParameters */ export declare type AuthenticationParameters = { scopes?: Array; extraScopesToConsent?: Array; prompt?: string; extraQueryParameters?: QPDict; claimsRequest?: string; authority?: string; state?: string; correlationId?: string; account?: Account; sid?: string; loginHint?: string; }; export declare function validateClaimsRequest(request: AuthenticationParameters): void;