import { Scalar } from '../../scalar';
import { SpendingKey } from './txKeyDesc/spendingKey';
import { ViewKey } from './txKeyDesc/viewKey';
export declare class TxKey extends Scalar {
    constructor(obj?: any);
    toSpendingKey(): SpendingKey;
    toViewKey(): ViewKey;
}
