import * as React from "react"; import * as react_jsx_runtime47 from "react/jsx-runtime"; import { VariantProps } from "class-variance-authority"; import { Card } from "@lssm/lib.ui-kit-web/ui/card"; import * as class_variance_authority_types8 from "class-variance-authority/types"; //#region src/components/molecules/StatCard.d.ts declare const statVariants: (props?: ({ emphasis?: "default" | "strong" | "subtle" | null | undefined; density?: "compact" | "comfortable" | null | undefined; } & class_variance_authority_types8.ClassProp) | undefined) => string; type StatCardProps = React.ComponentProps & VariantProps & { label: React.ReactNode; value: React.ReactNode; hint?: React.ReactNode; icon?: React.ReactNode; }; declare function StatCard({ label, value, hint, icon, emphasis, density, className, ...props }: StatCardProps): react_jsx_runtime47.JSX.Element; declare function StatCardGroup({ children, className }: { children: React.ReactNode; className?: string; }): react_jsx_runtime47.JSX.Element; //#endregion export { StatCard, StatCardGroup }; //# sourceMappingURL=StatCard.d.ts.map