import { PropsWithChildren, ReactNode } from 'react';
export type PropertyProps = PropsWithChildren<{
    label: ReactNode;
}>;
export declare function Property({ label, children }: PropertyProps): import("react/jsx-runtime").JSX.Element;
