import { ReturnCode } from '../../types/command'; import { TargetCommand } from '../../types/command/targetCommand'; /** * 'snippets' command class. */ export declare class SnippetsCommand extends TargetCommand { constructor(args: string[]); /** * Command execution method. * @returns promise that results into return code. */ execute(): Promise; }