import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CatalogObjectBase } from "./CatalogObjectBase"; import { CatalogTax } from "./CatalogTax"; export declare const CatalogObjectTax: core.serialization.ObjectSchema; export declare namespace CatalogObjectTax { interface Raw extends CatalogObjectBase.Raw { tax_data?: CatalogTax.Raw | null; } }