export declare type BibTeXDB = {
    [title: string]: any;
};
export declare const readBibTeX: (path: string) => BibTeXDB;
export declare const diffBibTeX: (prev: BibTeXDB, curr: BibTeXDB) => BibTeXDB;
export declare type BibTeXForNotion = {
    [name: string]: any;
};
