import { CipherView } from '../models/view/cipherView'; export abstract class SearchService { indexCiphers: () => Promise; searchCiphers: (query: string) => Promise; }