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