import { Currency } from './Currency';
import { Fee } from './Fee';
export declare class CreateRecord {
    fromPrivateKey: string;
    signatureId?: string;
    data: string;
    chain: string;
    feeCurrency?: Currency;
    from: string;
    to?: string;
    nonce?: number;
    ethFee?: Fee;
    fromShardID?: number;
    toShardID?: number;
}
