import { Entry } from './models/entry.model';
import { Cache } from '../util/cache';
export declare class EntryServiceCache extends Cache<Entry> {
    findByTemplateIdAndEntrySlug(templateId: string, entrySlug: string): Entry;
    findAllByTemplateId(templateId: string): Entry[];
    count(): number;
}
