import { type CurrencyCode, type PayoutStatus } from '../../enums/index.js';
import { type IPayoutResponse } from '../../types/index.js';
export declare class Payout {
    readonly id: string;
    readonly status: PayoutStatus;
    readonly amount: string;
    readonly currencyCode: CurrencyCode;
    constructor(payout: IPayoutResponse);
}
