#!/usr/bin/env node import { NETWORK } from '@scure/btc-signer'; type Opts = Record; export declare function splitArgs(args: string[]): { args: string[]; opts: Opts; }; type InputValidate = (input: string) => boolean | string | Promise; export declare const select: (message: string, choices: string[]) => Promise; export declare function input(message: string, validate?: InputValidate): Promise; declare const NETWORKS: Record; type NET = (typeof NETWORKS)[keyof typeof NETWORKS]; declare function getKeys(net: NET, opts: Opts): { priv: Uint8Array; recovery: Uint8Array; }; export declare const __TEST: { getKeys: typeof getKeys; isMain: (url: string, argv: string[]) => boolean; HELP_TEXT: string; }; export {}; //# sourceMappingURL=cli.d.ts.map