import React from "react"; import type { clutch as IClutch } from "@clutch-sh/api"; import { BadgeProps } from "@mui/material"; export interface QLink extends IClutch.core.project.v1.ILink { trackingId?: string; icon?: React.ElementType; } export interface LinkGroup extends IClutch.core.project.v1.ILinkGroup { links?: QLink[]; badge?: { color: BadgeProps["color"]; content: string; }; } export interface QuickLinksProps { linkGroups: LinkGroup[]; maxLinks?: number; } declare const QuickLinksCard: ({ linkGroups, maxLinks }: QuickLinksProps) => JSX.Element; export default QuickLinksCard; //# sourceMappingURL=quick-links.d.ts.map