import type { LucideIcon } from "lucide-react"; export * from "./variants.js"; type ActionLinkProps = { icon?: LucideIcon; label: string; size?: "default" | "lg"; }; /** * ActionLink — the visual for RouteLink variant="text". * Renders an icon + label as an inline text link. No button chrome. */ export declare function ActionLink({ icon: Icon, label, size }: ActionLinkProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map