import * as React from 'react'; import { TableProps } from './Table'; export type MetadataTableRow = { key: string; label?: React.ReactNode; value: React.ReactNode; }; interface Props { rows: (MetadataTableRow | null | undefined)[]; spacing?: 0 | 2 | 4; } export declare const MetadataTable: (props: Props) => import("react/jsx-runtime").JSX.Element; export declare const StyledTable: import("styled-components").StyledComponent<"table", any, {}, never>; export declare const MetadataTableWIP: import("styled-components").StyledComponent, any, TableProps, never>; export {};