/** Controls whether the IdP should prompt the user for authentication or consent. */ export declare const PromptEnum: { readonly None: "none"; readonly Login: "login"; readonly Consent: "consent"; readonly SelectAccount: "select_account"; }; export type PromptEnum = (typeof PromptEnum)[keyof typeof PromptEnum];