import type { FinderFeeVaultTopupDto } from './FinderFeeVaultTopupDto';
import type { NodeOperatorHistoryDto } from './NodeOperatorHistoryDto';
export type NodeOperatorDto = {
    operatorAddress: string;
    finderFeeVault: number;
    history?: Array<NodeOperatorHistoryDto>;
    topups?: Array<FinderFeeVaultTopupDto>;
};
