import React from 'react'; import { Badge } from '@consta/uikit/Badge'; declare const sizes: readonly ["2xs", "xs", "s", "m", "l"]; declare type Size = typeof sizes[number]; declare type BadgeProps = React.ComponentProps; declare type BadgeStatus = BadgeProps['status']; declare const layouts: readonly ["compact-title", "compact-unit", "full", "full-without-title", "full-reversed"]; declare type Layout = typeof layouts[number]; export declare type Data = { value: number; title?: string; badge?: { percentage: number; status: BadgeStatus; }; unit?: string; }; declare type Props = Data & { size: Size; layout?: Layout; withSign?: boolean; }; export declare const Stats: React.FC; export {};