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