import { ReactElement } from 'react'; export interface TabData { title: string; element: ReactElement; } export declare const PropertyTab: (props: { tabs: Array; active?: number; }) => import("react/jsx-runtime").JSX.Element;