// Copyright © Aptos // SPDX-License-Identifier: Apache-2.0 export declare const AuthError: { readonly missing_client: "missing_client"; readonly redirect_mismatch: "redirect_mismatch"; readonly state_mismatch: "state_mismatch"; }; export declare const AuthErrorMessages: Record; export declare const isAuthError: (code: string) => code is "missing_client" | "redirect_mismatch" | "state_mismatch"; //# sourceMappingURL=errors.d.ts.map