import { type ReactNode } from "react"; import type { EditableNodeAttributes } from "../types"; interface LinkProps extends EditableNodeAttributes { to: string; content?: string; children?: ReactNode; ariaLabel?: string; className?: string; } export declare function Link({ to, content, children, ariaLabel, className, "data-node-id": dataNodeId }: LinkProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Link.d.ts.map