import type { EditableNodeAttributes } from "../types"; interface StatProps extends EditableNodeAttributes { value: string; label: string; prefix?: string; suffix?: string; size?: "sm" | "md" | "lg"; colorScheme?: "light" | "dark"; className?: string; } export declare function Stat({ value, label, prefix, suffix, size, colorScheme, className, "data-node-id": dataNodeId, }: StatProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Stat.d.ts.map