import React from 'react'; export declare const PropertyList: typeof PropertyListRoot & { Item: typeof PropertyListItem; }; declare type PropertyListItemProps = { label: React.ReactNode; children: React.ReactNode; bold?: boolean; }; declare function PropertyListItem(props: PropertyListItemProps): null; declare type PropertyListProps = { row?: boolean; col?: boolean; children: React.ReactElement | React.ReactElement[]; }; declare function PropertyListRoot({ children, row, col }: PropertyListProps): JSX.Element; export {};