import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { TaxCalculationPhase } from "./TaxCalculationPhase"; import { TaxInclusionType } from "./TaxInclusionType"; export declare const CatalogTax: core.serialization.ObjectSchema; export declare namespace CatalogTax { interface Raw { name?: (string | null | undefined) | null; calculation_phase?: TaxCalculationPhase.Raw | null; inclusion_type?: TaxInclusionType.Raw | null; percentage?: (string | null | undefined) | null; applies_to_custom_amounts?: (boolean | null | undefined) | null; enabled?: (boolean | null | undefined) | null; applies_to_product_set_id?: (string | null | undefined) | null; } }