import type * as CandidApi from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { AllocationEarmarkType } from "./AllocationEarmarkType"; import { AllocationTargetCreate } from "./AllocationTargetCreate"; export declare const AllocationCreate: core.serialization.ObjectSchema; export declare namespace AllocationCreate { interface Raw { amount_cents: number; target: AllocationTargetCreate.Raw; earmark?: AllocationEarmarkType.Raw | null; } }