import { FC } from 'react'; import type { OpenPropertyDrawerFn, OpenPropertyDrawerParamters } from '../PropsType'; interface PropertyDrawerProps { visible: boolean; onOpenPropertyDrawer: OpenPropertyDrawerFn; formProps?: OpenPropertyDrawerParamters; rightTabsWidth: string | number; } declare const PropertyDrawer: FC; export default PropertyDrawer;