export declare const command = "ping [recipient]"; export declare const description = "Send a ping and wait for its pong"; export declare const builder: {}; interface ArgumentSet { readonly recipient?: string; } export declare function handler(argv: ArgumentSet): Promise; export {};