type Stat = {
    name: string;
    value: React.ReactNode;
};
type Props = {
    stats: Stat[];
    size?: "xs" | "s";
    className?: string;
};
export declare const VuiStatList: ({ stats, size, className, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
