import { Asciidoctor } from 'asciidoctor';
import { Plugin } from 'vite';
export declare type AsciidocPluginOptions = Omit<Asciidoctor.ProcessorOptions, 'base_dir' | 'parse' | 'to_dir' | 'to_file'>;
export declare function createAsciidocPlugin(options?: AsciidocPluginOptions): Plugin;
