import React from 'react'; export type StructuredMetadataTableListClassKey = 'root'; export type StructuredMetadataTableNestedListClassKey = 'root'; /** @public */ export interface StructuredMetadataTableProps { metadata: { [key: string]: any; }; dense?: boolean; options?: { /** * Function to format the keys from the `metadata` object. Defaults to * startCase from the lodash library. * @param key - A key within the `metadata` * @returns Formatted key */ titleFormat?: (key: string) => string; }; } /** @public */ export declare function StructuredMetadataTable(props: StructuredMetadataTableProps): React.JSX.Element;