export declare const ErrorCode: { readonly InvalidRequestError: "invalid_request_error"; readonly InternalServerError: "internal_server_error"; readonly UnprocessableEntityError: "unprocessable_entity_error"; readonly InsufficientQuotaError: "insufficient_quota_error"; readonly InvalidApiKeyError: "invalid_api_key_error"; readonly AuthenticationError: "authentication_error"; readonly NotFoundError: "not_found_error"; readonly RateLimitExceededError: "rate_limit_exceeded_error"; }; export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];