///
export interface SummaryItem {
title: string;
value: string;
}
export type SummaryBarStatus = 'loading' | 'error' | 'success';
export type SummaryData = SummaryItem[];
export interface SummaryBarProps {
/**
* Summary data to show
*/
data: SummaryData;
/**
* The status of component's state
*/
status: SummaryBarStatus;
/**
* Function, which will be executed on `Reload` click.
*/
onRetry: () => void | Promise;
}
export declare const SummaryBar: ((props: SummaryBarProps) => JSX.Element) & {
displayName: string;
};
//# sourceMappingURL=SummaryBar.d.ts.map