export interface Plugin {
    name: string;
    options?: object;
}
interface Options {
    basePath: string;
    template: string;
    plugins: Plugin[];
}
export default function markdownToStandAloneHtml(mdContents: string, { basePath, template, plugins }: Partial<Options>): Promise<string>;
export {};
