import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { AlertSemanticType } from '../../types/common';
import type { IconSize, IconType } from '../Icon';
type ClassNames = Readonly<{
    wrapper?: string;
    topFoldContent?: string;
    middleFoldContent?: string;
    bottomFoldContent?: string;
    textContainer?: string;
}>;
export type KPIBoxProps = {
    classNames?: ClassNames;
    semantic?: AlertSemanticType;
    topContent?: React.ReactNode;
    middleContent?: React.ReactNode;
    bottomContent?: React.ReactNode;
    iconName?: string;
    iconSize?: IconSize;
    iconType?: IconType;
};
export declare const KPIBox: Flow.AbstractComponent<KPIBoxProps, HTMLDivElement>;
export {};
//# sourceMappingURL=KPIBox.d.ts.map