export declare class IdentityProviderError extends Error {
    constructor(message: string);
}
export declare class StateMismatchError extends IdentityProviderError {
    constructor();
}
export declare class SilentAuthorizationError extends IdentityProviderError {
    constructor(code?: string, description?: string);
}
export declare class CodeVerifierMissingError extends IdentityProviderError {
    constructor();
}
export declare class TokenExchangeError extends IdentityProviderError {
    status: number;
    details?: string | undefined;
    constructor(status: number, details?: string | undefined);
}
export declare class NonceMissingError extends IdentityProviderError {
    constructor();
}
export declare class IdTokenMissingError extends IdentityProviderError {
    constructor();
}
export declare class InvalidNonceError extends IdentityProviderError {
    constructor();
}
export declare class InvalidIdTokenError extends IdentityProviderError {
    constructor();
}
