//#region src/oxlint/plugin.d.ts type PluginMeta = { name: string; }; type PluginRules = Record; type OxlintPlugin = { meta: PluginMeta; rules: PluginRules; }; declare const plugin: OxlintPlugin; //#endregion export { plugin as default };