import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { InventoryAdjustmentReasonDirection } from "./InventoryAdjustmentReasonDirection"; import { InventoryAdjustmentReasonId } from "./InventoryAdjustmentReasonId"; export declare const InventoryAdjustmentReason: core.serialization.ObjectSchema; export declare namespace InventoryAdjustmentReason { interface Raw { id: InventoryAdjustmentReasonId.Raw; name?: (string | null | undefined) | null; direction?: InventoryAdjustmentReasonDirection.Raw | null; created_at?: string | null; updated_at?: string | null; is_deleted?: (boolean | null | undefined) | null; } }