import React from "react";
import type { PropsWithChildren } from "react";
interface BehaviorProps {
    node: Node;
    className?: string;
    keepOriginal?: boolean;
    rewriteIds?: boolean;
}
export declare const forwardAttributes: (atts: NamedNodeMap) => Record<string, string>;
export default function Behavior({ children, node, className, keepOriginal, rewriteIds }: PropsWithChildren<BehaviorProps>): React.DOMElement<Record<string, string>, Element>;
export {};
//# sourceMappingURL=Behavior.d.ts.map