import { OutputType } from './external'; import { Plugin, PluginContext } from './plugin'; export interface CompilerOptions { width: number; height: number; element: string; engine: string; config: any; plugins: Plugin[]; type: OutputType; } export declare function compile(options: CompilerOptions): Promise; //# sourceMappingURL=compile.d.ts.map