import { Entry } from '../models/entry.model';
export declare class EntryFactory {
    static get instance(): Entry;
    static objectToEntry(object: any): Entry;
    static toLite(entry: Entry): Entry;
}
