import React from 'react'; import { ItemGroupProps } from '../StandardForm/index'; export interface StandardDrawerProps { children?: React.ReactNode; title?: String | React.ReactNode; type?: 'form' | 'tabForm' | 'gridForm' | String; size?: 'default' | 'large' | 'sm' | 'lg' | 'xlg' | any; formItemGroup?: ItemGroupProps[]; open?: boolean; fieldStatus?: string; width?: string | number; formPrefix?: (drawerForm?: any, props?: StandardDrawerProps, forceUpdateForm?: () => void) => React.ReactNode; formPostfix?: (drawerForm?: any, props?: StandardDrawerProps, forceUpdateForm?: () => void) => React.ReactNode; [k: string]: any; } declare const StandardDrawer: (props: StandardDrawerProps) => any; export default StandardDrawer;