import * as utxolib from '@bitgo/utxo-lib'; import { Descriptor } from '@bitgo/wasm-utxo'; /** * Get a standard output descriptor that corresponds to the proprietary HD wallet setup * used in BitGo wallets. * Only supports a subset of script types. */ export declare function getDescriptorForScriptType(rootWalletKeys: utxolib.bitgo.RootWalletKeys, scriptType: 'p2sh' | 'p2shP2wsh' | 'p2wsh', scope: 'internal' | 'external'): Descriptor; /** * Get a map of named descriptors for the given root wallet keys. * Unsupported script types will have a value of null. * Currently supports p2sh, p2shP2wsh, and p2wsh script types. * @param rootWalletKeys */ export declare function getNamedDescriptorsForRootWalletKeys(rootWalletKeys: utxolib.bitgo.RootWalletKeys): Map; //# sourceMappingURL=fromFixedScriptWallet.d.ts.map