import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { FulfillmentState } from "./FulfillmentState"; export declare const OrderFulfillmentUpdatedUpdate: core.serialization.ObjectSchema; export declare namespace OrderFulfillmentUpdatedUpdate { interface Raw { fulfillment_uid?: (string | null | undefined) | null; old_state?: FulfillmentState.Raw | null; new_state?: FulfillmentState.Raw | null; } }