import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ModifierLocationOverrides } from "./ModifierLocationOverrides"; import { Money } from "./Money"; export declare const CatalogModifier: core.serialization.ObjectSchema; export declare namespace CatalogModifier { interface Raw { name?: (string | null | undefined) | null; price_money?: Money.Raw | null; on_by_default?: (boolean | null | undefined) | null; ordinal?: (number | null | undefined) | null; modifier_list_id?: (string | null | undefined) | null; location_overrides?: (ModifierLocationOverrides.Raw[] | null | undefined) | null; kitchen_name?: (string | null | undefined) | null; image_id?: (string | null | undefined) | null; hidden_online?: (boolean | null | undefined) | null; child_modifier_list_ids?: (string[] | null | undefined) | null; } }