import { RenderItemProps } from '../RenderItem'; export interface ItemDocumentProps extends RenderItemProps { uploadType: 'card' | 'button' | 'dragger'; onChange?: (value: any, info: any) => void; } declare const ItemDocument: (props: ItemDocumentProps) => JSX.Element; export default ItemDocument;