import { VariantProps } from "class-variance-authority"; import { type ComponentType, type ComponentPropsWithoutRef } from "react"; declare const toolTileCva: (props?: ({ variant?: "accent" | "default" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type ToolTileCvaProps = VariantProps; export type ToolTileProps = { label: string; icon: ComponentType>; badgeLabel?: string; className?: string; onClick: () => void; } & Omit, "children" | "onClick"> & ToolTileCvaProps; export declare const ToolTile: ({ label, icon: Icon, badgeLabel, variant, className, onClick, ...rest }: ToolTileProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=ToolTile.d.ts.map