import React from 'react'; import { DrawerProps } from 'antd'; import { BaseFormProps } from '../BaseForm'; import './index.less'; export interface BizDrawerFormProps extends Omit, 'title' | 'defaultValue'>, Pick { trigger?: React.ReactNode; triggerRootProps?: React.HTMLAttributes; drawerProps?: Omit; onOpenChange?: (open: boolean) => void; } declare function BizDrawerForm(props: BizDrawerFormProps): React.JSX.Element; export default BizDrawerForm;