import { FlexError } from "../FlexError"; import { SSOConfig } from "../state/AppConfig"; /** * Enhances error with categorization and improved messaging based on Flex Status * Only overrides infrastructure errors with incident messaging when Flex status is degraded * Configuration errors always maintain their specific error messages * * This is specifically for UI-level error handling in login flows. * @private * @since 2.15.0 */ export declare const parseCriticalPathError: (error: FlexError) => Promise; export declare class IdpUrl { private static accountSid; private static idpUrl; private static error; private static fetchRedirectURL; static get(accountSid: string, config: SSOConfig): Promise; static resetCache(): void; constructor(); }