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 * @memberof AggregatedDataTile * @private */ export interface AggregatedDataTileProps { title: React.ReactChild; content?: string; description?: React.ReactChild; className?: string; } /** * This component is used to display KPIs * * @component * @category Components / Basic * @hideconstructor * @param {AggregatedDataTile.AggregatedDataTileProps} props - props * @private * @deprecated * @deprecatedSince 2.5.0 * @altRecommendation Use `AggregatedDataTileV2` instead * @altRecommendationExample * import { AggregatedDataTileV2 } from "@twilio/flex-ui"; * */ export declare class AggregatedDataTile extends React.PureComponent { render(): JSX.Element; }