import type { Blockchain } from './Blockchain';
import type { Coin } from './Coin';
export type AdditionalPayoutWalletsClass = {
    walletAddress?: string | null;
    valuepercent?: number | null;
    valuetotal?: number | null;
    custompropertycondition?: string | null;
    coin?: Coin;
    blockchain?: Blockchain;
};
