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