import * as babel from '@babel/core'; export interface PrecompilerOptions { plugins: babel.PluginObj[]; precompile?: false | 'ejs' | 'standard'; comments?: boolean; } export declare function precompile(template: string, options?: Partial): Promise;