import { DogeNetworkId } from "../../networks/types"; import { TransactionBuilder } from "../../transaction/builder"; import { ICreateP2SHParams } from "./types"; declare function createP2SHTransaction(params: ICreateP2SHParams): TransactionBuilder; declare function getP2SHAddress(redeemScriptOrBASM: Uint8Array | string, networkId: DogeNetworkId): string; export { createP2SHTransaction, getP2SHAddress, };