/**
 * Thrown when the AWS SSO session for the active profile could not be loaded
 * or has expired, so credentials cannot be resolved.
 */
export declare class SsoSessionExpiredError extends Error {
    readonly profileName?: string;
    readonly cause?: unknown;
    constructor(profileName?: string, cause?: unknown);
    private static buildMessage;
}
/**
 * Detects whether an unknown error represents an expired or unresolved AWS SSO
 * session, by inspecting its AWS error name.
 */
export declare function isSsoSessionExpiredError(error: unknown): boolean;
//# sourceMappingURL=sso-session-expired-error.d.ts.map