/**
 * Converts Netscape Bookmark export file to an array of URIs and Tags
 *
 * @function
 * @public
 * @param fileName
 * @returns
 */
declare const convert: (fileName: string) => Promise<import("./interfaces").Bookmark[]>;
export { convert };
export default convert;
