import { RawContextKey } from "../../../../platform/contextkey/common/contextkey.js"; export declare enum SearchCommandIds { FindInFilesActionId = "workbench.action.findInFiles", FocusActiveEditorCommandId = "search.action.focusActiveEditor", FocusSearchFromResults = "search.action.focusSearchFromResults", OpenMatch = "search.action.openResult", OpenMatchToSide = "search.action.openResultToSide", RemoveActionId = "search.action.remove", CopyPathCommandId = "search.action.copyPath", CopyMatchCommandId = "search.action.copyMatch", CopyAllCommandId = "search.action.copyAll", OpenInEditorCommandId = "search.action.openInEditor", ClearSearchHistoryCommandId = "search.action.clearHistory", FocusSearchListCommandID = "search.action.focusSearchList", ReplaceActionId = "search.action.replace", ReplaceAllInFileActionId = "search.action.replaceAllInFile", ReplaceAllInFolderActionId = "search.action.replaceAllInFolder", CloseReplaceWidgetActionId = "closeReplaceInFilesWidget", ToggleCaseSensitiveCommandId = "toggleSearchCaseSensitive", ToggleWholeWordCommandId = "toggleSearchWholeWord", ToggleRegexCommandId = "toggleSearchRegex", TogglePreserveCaseId = "toggleSearchPreserveCase", AddCursorsAtSearchResults = "addCursorsAtSearchResults", RevealInSideBarForSearchResults = "search.action.revealInSideBar", ReplaceInFilesActionId = "workbench.action.replaceInFiles", ShowAllSymbolsActionId = "workbench.action.showAllSymbols", QuickTextSearchActionId = "workbench.action.quickTextSearch", CancelSearchActionId = "search.action.cancel", RefreshSearchResultsActionId = "search.action.refreshSearchResults", FocusNextSearchResultActionId = "search.action.focusNextSearchResult", FocusPreviousSearchResultActionId = "search.action.focusPreviousSearchResult", ToggleSearchOnTypeActionId = "workbench.action.toggleSearchOnType", CollapseSearchResultsActionId = "search.action.collapseSearchResults", ExpandSearchResultsActionId = "search.action.expandSearchResults", ExpandRecursivelyCommandId = "search.action.expandRecursively", ClearSearchResultsActionId = "search.action.clearSearchResults", GetSearchResultsActionId = "search.action.getSearchResults", ViewAsTreeActionId = "search.action.viewAsTree", ViewAsListActionId = "search.action.viewAsList", ShowAIResultsActionId = "search.action.showAIResults", HideAIResultsActionId = "search.action.hideAIResults", SearchWithAIActionId = "search.action.searchWithAI", ToggleQueryDetailsActionId = "workbench.action.search.toggleQueryDetails", ExcludeFolderFromSearchId = "search.action.excludeFromSearch", ExcludeFileTypeFromSearchId = "search.action.excludeFileTypeFromSearch", IncludeFileTypeInSearchId = "search.action.includeFileTypeInSearch", FocusNextInputActionId = "search.focus.nextInputBox", FocusPreviousInputActionId = "search.focus.previousInputBox", RestrictSearchToFolderId = "search.action.restrictSearchToFolder", FindInFolderId = "filesExplorer.findInFolder", FindInWorkspaceId = "filesExplorer.findInWorkspace" } export declare const SearchContext: { SearchViewVisibleKey: RawContextKey; SearchViewFocusedKey: RawContextKey; SearchResultListFocusedKey: RawContextKey; InputBoxFocusedKey: RawContextKey; SearchInputBoxFocusedKey: RawContextKey; ReplaceInputBoxFocusedKey: RawContextKey; PatternIncludesFocusedKey: RawContextKey; PatternExcludesFocusedKey: RawContextKey; ReplaceActiveKey: RawContextKey; HasSearchResults: RawContextKey; FirstMatchFocusKey: RawContextKey; FileMatchOrMatchFocusKey: RawContextKey; FileMatchOrFolderMatchFocusKey: RawContextKey; FileMatchOrFolderMatchWithResourceFocusKey: RawContextKey; FileFocusKey: RawContextKey; FolderFocusKey: RawContextKey; ResourceFolderFocusKey: RawContextKey; IsEditableItemKey: RawContextKey; MatchFocusKey: RawContextKey; SearchResultHeaderFocused: RawContextKey; ViewHasSearchPatternKey: RawContextKey; ViewHasReplacePatternKey: RawContextKey; ViewHasFilePatternKey: RawContextKey; ViewHasSomeCollapsibleKey: RawContextKey; InTreeViewKey: RawContextKey; hasAIResultProvider: RawContextKey; AIResultsTitle: RawContextKey; AIResultsRequested: RawContextKey; };