import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CatalogPricingType } from "./CatalogPricingType"; import { InventoryAlertType } from "./InventoryAlertType"; import { Money } from "./Money"; export declare const ItemVariationLocationOverrides: core.serialization.ObjectSchema; export declare namespace ItemVariationLocationOverrides { interface Raw { location_id?: (string | null | undefined) | null; price_money?: Money.Raw | null; pricing_type?: CatalogPricingType.Raw | null; track_inventory?: (boolean | null | undefined) | null; inventory_alert_type?: InventoryAlertType.Raw | null; inventory_alert_threshold?: ((bigint | number) | null | undefined) | null; sold_out?: boolean | null; sold_out_valid_until?: string | null; } }