import { DictEntryConfidence } from './dict';
import { SentenceFormat } from '../translator/sentence-format';
export declare class DictEntryEntity {
    id: string;
    path: string;
    english: string;
    chinese: string;
    fingerprint: string;
    format: SentenceFormat;
    confidence: DictEntryConfidence;
    isRegExp: boolean;
    createdAt: Date;
    updatedAt: Date;
}
