import { Bitcoind } from '../../types'; type HelpParams = { bitcoind: Bitcoind; command?: string; }; /** * help ( "command" ) * * List all commands, or get help for a specified command. * */ export declare function help(params: HelpParams): Promise; export {};