import { BitcoinAddress } from './BitcoinAddress'; export declare class BitcoinSegwitAddress extends BitcoinAddress { constructor(value: string, visibilityDerivationIndex?: number, addressDerivationIndex?: number); static from(node: any, visibilityDerivationIndex?: number, addressDerivationIndex?: number): BitcoinSegwitAddress; static fromAddress(address: string): BitcoinSegwitAddress; getValue(): string; }