import { CipherView } from '../models/view/cipherView'; export abstract class SearchService { clearIndex: () => void; indexCiphers: () => Promise; searchCiphers: (query: string, filter?: (cipher: CipherView) => boolean) => Promise; }