import { ShortcodeDefinitions } from '../shortcodes/types.js'; import { Elder } from '../core/Elder.js'; import { ProcessedRoutesObject } from '../routes/types.js'; import { ProcessedHooksArray } from '../hooks/types.js'; export declare const pluginVersionCheck: (elderVersion: string, pluginVersion: string) => boolean; declare function plugins(elder: Elder): Promise<{ pluginRoutes: ProcessedRoutesObject; pluginHooks: ProcessedHooksArray; pluginShortcodes: ShortcodeDefinitions; }>; export default plugins;