import { Transaction } from '../../vms/common/transaction';
import type { BaseTx } from './baseTx';
import type { TransferableInput } from './transferableInput';
export declare abstract class AvaxTx extends Transaction {
    abstract baseTx?: BaseTx;
    getInputs(): TransferableInput[];
    getBlockchainId(): string;
    getSigIndices(): number[][];
}
//# sourceMappingURL=avaxTx.d.ts.map