import { Event } from "../../../../base/common/event.js"; import { IChatMode } from "./chatModes.js"; export declare const IChatModeService: import("../../../../platform/instantiation/common/instantiation.js").ServiceIdentifier; export interface IChatModeService { readonly _serviceBrand: undefined; readonly onDidChangeChatModes: Event; getModes(): { builtin: readonly IChatMode[]; custom: readonly IChatMode[]; }; findModeById(id: string): IChatMode | undefined; findModeByName(name: string): IChatMode | undefined; }