import { BaseService } from '../infrastructure'; interface SearchOptions { projectId: ProjectId; groupId: string | number; } declare class Search extends BaseService { all(scope: string, search: string, { projectId, groupId }: SearchOptions): Promise; } export default Search;