export type PluginFn = (input: string, ...args: unknown[]) => string; export type PluginRegistrar = () => void; export declare function getPlugin(code: string): PluginFn; export declare const _pluginRegistry: Map;