/**
 * Thrown when an AWS request fails because the credentials or security token
 * are expired or invalid (for example, an expired SSO session).
 */
export declare class ExpiredCredentialsError extends Error {
    readonly cause?: unknown;
    constructor(cause?: unknown);
}
/**
 * Detects whether an unknown error represents expired or invalid AWS
 * credentials, by inspecting its AWS error name.
 */
export declare function isExpiredCredentialsError(error: unknown): boolean;
//# sourceMappingURL=expired-credentials-error.d.ts.map