import { AnchorMouseEvent } from '../../types/jsx/html.events.js'; import type { ContentNode } from '../ContentNode.js'; import { TungstenSimpleComponent } from '../Components.jsx'; export type LinkProps = { className?: string | undefined; to: `/${string}`; children: ContentNode; }; export declare class Link extends TungstenSimpleComponent { href: string; click: (event: AnchorMouseEvent) => void; content: () => ContentNode; } //# sourceMappingURL=Link.d.ts.map