import { Emitter, Event } from '@theia/core'; import { WorkspaceSearchFilterProvider } from '@theia/workspace/lib/browser'; import { SearchInWorkspacePreferences } from '../common/search-in-workspace-preferences'; /** * A workspace search filter provider that contributes the user-configurable * "Search: Exclude" settings from the preferences. */ export declare class SearchExcludeFilterProvider implements WorkspaceSearchFilterProvider { protected readonly searchPreferences: SearchInWorkspacePreferences; protected readonly onExclusionGlobsChangedEmitter: Emitter; readonly onExclusionGlobsChanged: Event; protected init(): void; getExclusionGlobs(): string[]; } //# sourceMappingURL=search-exclude-filter-provider.d.ts.map