import type { LucideIcon } from "lucide-react"; import type { ReactNode } from "react"; export * from "./variants.js"; type QuickLinkVariant = "default" | "grid"; type QuickLinkProps = { icon: LucideIcon; label: string; description?: string; suffix?: ReactNode; children?: never; variant?: QuickLinkVariant; className?: string; }; export declare function QuickLink({ icon: Icon, label, description, suffix, variant, className, }: QuickLinkProps): import("react").JSX.Element; type QuickLinkGridProps = { children: ReactNode; columns?: 2 | 3 | 4; className?: string; }; export declare function QuickLinkGrid({ children, columns, className }: QuickLinkGridProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map