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 Money: core.serialization.ObjectSchema; export declare namespace Money { interface Raw { amount?: ((bigint | number) | null | undefined) | null; currency?: Currency.Raw | null; } }