import { Currency } from './Currency';
import { Fee } from './Fee';
import { PrivateKeyOrSignatureId } from './PrivateKeyOrSignatureId';
export declare class GenerateCustodialAddress extends PrivateKeyOrSignatureId {
    chain: Currency;
    enableFungibleTokens: boolean;
    enableNonFungibleTokens: boolean;
    enableSemiFungibleTokens: boolean;
    enableBatchTransactions: boolean;
    nonce?: number;
    fee?: Fee;
    feeCurrency?: Currency;
}
