import type { Pail } from "@visulima/pail";
import type { Plugin } from "rollup";
export type JSXRemoveAttributesPlugin = {
    attributes: string[];
};
export declare const jsxRemoveAttributes: ({ attributes, logger }: JSXRemoveAttributesPlugin & {
    logger: Pail;
}) => Plugin;
