import { ReactNode } from 'react';
export type EntityProperty = {
    key: string;
    title: string;
    value: ReactNode;
};
/**
 * This hook fetches all the entity metadata shown on the Entity page, and transforms the data into an ordered list of
 * render-able key-value pairs.
 * @param entityId
 * @param versionNumber
 */
export declare function useGetEntityTitleBarProperties(entityId: string, versionNumber?: number): EntityProperty[];
//# sourceMappingURL=useGetEntityTitleBarProperties.d.ts.map