import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ErrorCategory } from "./ErrorCategory"; import { ErrorCode } from "./ErrorCode"; export declare const Error_: core.serialization.ObjectSchema; export declare namespace Error_ { interface Raw { category: ErrorCategory.Raw; code: ErrorCode.Raw; detail?: string | null; field?: string | null; } }