import { Currency } from './Currency';
import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class UpdateMarketplaceFee extends PrivateKeyOrSignatureId {
    contractAddress: string;
    chain: Currency;
    marketplaceFee: number;
    nonce?: number;
    fee?: Fee;
    feeCurrency?: Currency;
}
