import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { ItemFormatEnum } from "./ItemFormatEnum"; import { ItemTypeEnum } from "./ItemTypeEnum"; export declare const ItemSchema: core.serialization.ObjectSchema; export declare namespace ItemSchema { interface Raw { item_type?: ItemTypeEnum.Raw | null; item_format?: ItemFormatEnum.Raw | null; item_choices?: string[] | null; } }