import { registerFn, registerPost, registerPre } from './Fn'; import { MontaOptions } from '../Options'; export interface MontaPlugin { registerFn: typeof registerFn; registerPre: typeof registerPre; registerPost: typeof registerPost; options: MontaOptions; pluginOptions: PluginOptionsType; } export declare function loadPlugins(options: MontaOptions): void; //# sourceMappingURL=index.d.ts.map