import { type ReadFileApi } from './PLUtil.js'; import type { PSTOpts } from './PSTOpts.js'; import type { IPSTFile } from './IPSTFile.js'; /** * Open pst/ost file from os file path. * * @param path os file path. * @param opts options * @returns */ export declare function openPstFile(path: string, opts?: PSTOpts): Promise; /** * Open pst/ost file using user defined callback. * * @param api reader callback * @param opts options * @returns */ export declare function openPst(api: ReadFileApi, opts?: PSTOpts): Promise;