import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Money } from "./Money"; import { PayoutFeeType } from "./PayoutFeeType"; export declare const PayoutFee: core.serialization.ObjectSchema; export declare namespace PayoutFee { interface Raw { amount_money?: Money.Raw | null; effective_at?: (string | null | undefined) | null; type?: PayoutFeeType.Raw | null; } }