import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { InventoryState } from "./InventoryState"; import { SourceApplication } from "./SourceApplication"; export declare const InventoryPhysicalCount: core.serialization.ObjectSchema; export declare namespace InventoryPhysicalCount { interface Raw { id?: string | null; reference_id?: (string | null | undefined) | null; catalog_object_id?: (string | null | undefined) | null; catalog_object_type?: (string | null | undefined) | null; state?: InventoryState.Raw | null; location_id?: (string | null | undefined) | null; quantity?: (string | null | undefined) | null; source?: SourceApplication.Raw | null; employee_id?: (string | null | undefined) | null; team_member_id?: (string | null | undefined) | null; occurred_at?: (string | null | undefined) | null; created_at?: string | null; adjustment_id?: string | null; } }