export declare const IInlineChatHistoryService: import("../../../../platform/instantiation/common/instantiation.js").ServiceIdentifier; export interface IInlineChatHistoryService { readonly _serviceBrand: undefined; addToHistory(value: string): void; previousValue(): string | undefined; nextValue(): string | undefined; isAtEnd(): boolean; replaceLast(value: string): void; resetCursor(): void; }