import { ZKpiValue_Props, ZKpiValue_Slots } from '@zurich/dev-utils/code/KpiValue'; import { ToReactSlots } from './helperTypes'; import { Children_Props } from './sub-components.types'; export type ReactKpiValue_Props = ToReactSlots; type ReactKpiValue_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Header: typeof Header; Description: typeof Description; Difference: typeof Difference; }; declare const Header: import('react').FC; declare const Description: import('react').FC; declare const Difference: { (props: { amount?: number | string; } & Children_Props): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactKpiValue_Type; export { Namespace as ReactKpiValue };