import { ToReact } from './helpers.types'; import { Content_Props, Header_Props } from '../react/sub-components.types'; import { ZKpiValue } from '../kpi-value'; export type ZrKpiValue_Props = ToReact<'KpiValue'>; type ZrKpiValue_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Header: React.FC; Description: React.FC; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrKpiValue_Type; export { Namespace as ZrKpiValue };