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