import * as React from "react"; /** * Props to define the content of an AggregatedDataTile * * @typedef AggregatedDataTileProps * @property {React.ReactChild} title - The main title of the tile * @property {string} [content] - The textual content of the tile. If props.children is provided, this prop won't be rendered. * @property {React.ReactChild} [description] - A secondary description of the tile. * @property {string} [className] - - An additional class name for the tile * @property {React.ReactNode} icon - Icon to be used in the tile * @memberof AggregatedDataTileV2 * @private */ export interface AggregatedDataTileV2Props { title: React.ReactChild; content?: string; description?: React.ReactChild; className?: string; icon?: string | React.ReactNode; grow?: number; name?: string; } /** * This component is used to display KPIs * * @component * @category Components / Basic * @hideconstructor * @param {AggregatedDataTileV2.AggregatedDataTileProps} props - props * @private */ export declare class AggregatedDataTileV2 extends React.PureComponent { render(): JSX.Element; } /** * Props to define the content of an AggregatedDataTile * * @typedef AggregatedCardDataV2Props * @property {React.ReactChild} title - The main title of the tile * @property {string} [content] - The textual content of the tile. If props.children is provided, this prop won't be rendered. * @property {React.ReactChild} [description] - A secondary description of the tile. * @property {string} [className] - - An additional class name for the tile * @memberof AggregatedDataTileV2 * @private */ export interface AggregatedCardDataV2Props { title: React.ReactChild; content?: string; description?: React.ReactChild | string | number; className?: string; minWidth?: string; isHighlighted?: boolean; } /** * This component is used to display KPIs * * @component * @category Components / Basic * @hideconstructor * @param {AggregatedDataTileV2.AggregatedDataTileProps} props - props * @private */ export declare class AggregatedCardDataV2 extends React.PureComponent { render(): JSX.Element; }