import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Currency } from "./Currency"; export declare const V1Money: core.serialization.ObjectSchema; export declare namespace V1Money { interface Raw { amount?: (number | null | undefined) | null; currency_code?: Currency.Raw | null; } }