import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Destination } from "./Destination"; import { Money } from "./Money"; import { PayoutFee } from "./PayoutFee"; import { PayoutStatus } from "./PayoutStatus"; import { PayoutType } from "./PayoutType"; export declare const Payout: core.serialization.ObjectSchema; export declare namespace Payout { interface Raw { id: string; status?: PayoutStatus.Raw | null; location_id: string; created_at?: string | null; updated_at?: string | null; amount_money?: Money.Raw | null; destination?: Destination.Raw | null; version?: number | null; type?: PayoutType.Raw | null; payout_fee?: (PayoutFee.Raw[] | null | undefined) | null; arrival_date?: (string | null | undefined) | null; end_to_end_id?: (string | null | undefined) | null; } }