export class JapaneseDBTool {
    /**
     * @param {Object<string, string>} sources
     * @param {string} targetPath
     * @returns {Promise<void>}
     */
    static buildSqlite(sources: {
        [x: string]: string;
    }, targetPath: string): Promise<void>;
}
export type DictIndexRow = import("./types/japanesedb").DictIndexRow;
export type KanjiAliveRow = import("./types/japanesedb").KanjiAliveRow;
