import type { Plugin } from "unified"; import type { Program } from "estree"; export type HtmlOverrideOptions = { tags?: string | string[]; }; /** * * It is a recma plugin which makes selected html raw elements overridable. * */ declare const plugin: Plugin<[HtmlOverrideOptions?], Program>; export default plugin; //# sourceMappingURL=index.d.ts.map