import { ReactNode } from 'react'; type PropertyProps = { name: string; type: string; location?: string; hidden?: boolean; default?: unknown; required?: boolean; deprecated?: boolean; children: ReactNode; id?: string; pre?: string[]; post?: string[]; className?: string; onMount?: () => void; navigateToHeaderAriaLabel?: string; defaultLabel?: string; requiredLabel?: string; deprecatedLabel?: string; }; declare const Property: ({ name, type, location, hidden, default: defaultValue, required, deprecated, children, id, pre, post, className, onMount, navigateToHeaderAriaLabel, defaultLabel, requiredLabel, deprecatedLabel, }: PropertyProps) => import("react/jsx-runtime").JSX.Element | null; export { Property }; export type { PropertyProps }; //# sourceMappingURL=property.d.ts.map