import type { GlobalOptions, NetworkOption } from './types.js'; /** * Text-mode stderr hints derived from the per-network presets (ADR 082). All of * these are suppressed under `--quiet` and `--output json` so machine output is * never touched, and they never throw: a presentation hint must never break the * command that produced the real result. */ /** * Prints a funding hint after a KEY `create` on a network with a public faucet: * the derived initial P2WPKH beacon address next to the faucet and explorer * links the operator would otherwise hand-copy. A no-op on a network without a * faucet (regtest/mainnet), which also keeps mainnet from showing a fund-me * affordance. The beacon address is derived from the DID string alone via * {@link BeaconUtils.createBeaconService}, so it matches the resolver's * `#initialP2WPKH` service rather than a divergent re-derivation. */ export declare function printCreateFundingHint(g: GlobalOptions, network: NetworkOption, did: string): void; /** * Prints a watch link after an `update`/`deactivate` broadcast: the * block-explorer URL for the signal txid. A no-op on a network without an * explorer (regtest). */ export declare function printWatchHint(g: GlobalOptions, network: NetworkOption, txid: string): void; //# sourceMappingURL=hints.d.ts.map