import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CatalogQuickAmountType } from "./CatalogQuickAmountType"; import { Money } from "./Money"; export declare const CatalogQuickAmount: core.serialization.ObjectSchema; export declare namespace CatalogQuickAmount { interface Raw { type: CatalogQuickAmountType.Raw; amount: Money.Raw; score?: ((bigint | number) | null | undefined) | null; ordinal?: ((bigint | number) | null | undefined) | null; } }