import { IconProps } from '../Icon'; export type itemType = { iconName: IconProps['name']; itemLabel: string; }; export interface MetaDataBarProps { /** A array of itemType object's to display in the bar. itemType { iconName: IconProps['name']; itemLabel: string; } */ itemData: itemType[]; } /** Represents a component that displays a array of data in a bar. */ export declare const MetaDataBar: ({ itemData }: MetaDataBarProps) => import("react").JSX.Element;