import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Address } from "./Address"; import { VendorContact } from "./VendorContact"; import { VendorStatus } from "./VendorStatus"; export declare const Vendor: core.serialization.ObjectSchema; export declare namespace Vendor { interface Raw { id?: string | null; created_at?: string | null; updated_at?: string | null; name?: (string | null | undefined) | null; address?: Address.Raw | null; contacts?: (VendorContact.Raw[] | null | undefined) | null; account_number?: (string | null | undefined) | null; note?: (string | null | undefined) | null; version?: number | null; status?: VendorStatus.Raw | null; } }