import { IProtocolTransactionCursor } from '../interfaces/IAirGapTransaction'; import { FeeDefaults, CoinAddress } from './ICoinProtocol'; import { TezosTransactionResult } from './tezos/types/TezosTransactionResult'; export declare abstract class NonExtendedProtocol { getExtendedPrivateKeyFromMnemonic(mnemonic: string, derivationPath: string, password?: string): Promise; getExtendedPrivateKeyFromHexSecret(secret: string, derivationPath: string): Promise; getBalanceOfExtendedPublicKey(extendedPublicKey: string, offset: number): Promise; signWithExtendedPrivateKey(extendedPrivateKey: string, transaction: any): Promise; getAddressFromExtendedPublicKey(extendedPublicKey: string, visibilityDerivationIndex: number, addressDerivationIndex: number): Promise; getAddressesFromExtendedPublicKey(extendedPublicKey: string, visibilityDerivationIndex: number, addressCount: number, offset: number): Promise; estimateMaxTransactionValueFromExtendedPublicKey(extendedPublicKey: string, recipients: string[], fee: string): Promise; estimateFeeDefaultsFromExtendedPublicKey(publicKey: string, recipients: string[], values: string[], data?: any): Promise; getTransactionsFromExtendedPublicKey(extendedPublicKey: string, limit: number, cursor: IProtocolTransactionCursor): Promise; prepareTransactionFromExtendedPublicKey(extendedPublicKey: string, offset: number, recipients: string[], values: string[], fee: string): Promise; }