import { ReactNode, JSX } from 'react';
export type CatalogEntityInfoBarProps = {
    leftContent: ReactNode;
    rightContent?: ReactNode;
    withSeparator?: boolean;
    hoverEffect?: boolean;
    isCodeBlock?: boolean;
};
export declare function CatalogEntityInfoBar({ leftContent, rightContent, withSeparator, hoverEffect, isCodeBlock, }: CatalogEntityInfoBarProps): JSX.Element;
