export declare class DictEntryEntity {
    id: number;
    path: string;
    filename: string;
    xpath: string;
    english: string;
    chinese: string;
    confidence: DictEntryConfidence;
    isRegExp: boolean;
    createdAt: Date;
    updatedAt: Date;
}
declare type DictEntryConfidence = 'Manual' | 'DictAccurate' | 'DictFuzzy' | 'Engine';
export {};
