import { FrontendApplicationContribution } from '@theia/core/lib/browser'; import { PromptService } from '@theia/ai-core/lib/common'; /** * Contribution that registers the `/remember` slash command for AI chat agents. * * This command allows Architect and Coder agents to extract important topics * from the current conversation and delegate to the ProjectInfo agent to update * the persistent project context file. */ export declare class RememberCommandContribution implements FrontendApplicationContribution { protected readonly promptService: PromptService; onStart(): void; protected registerRememberCommand(): void; protected buildCommandTemplate(): string; } //# sourceMappingURL=remember-command-contribution.d.ts.map