import { SchemaBasedCommand } from "../SchemaBasedCommand"; import { TaskContext } from "../types"; export interface SetPropertyCommandInput { property: string; value: string; } export declare class SetPropertyCommand extends SchemaBasedCommand { constructor(title?: string, description?: string); execute(context: TaskContext, input: SetPropertyCommandInput): Promise; } //# sourceMappingURL=SetPropertyCommand.d.ts.map