import { FC } from 'react'; import { EventInputBaseType } from '../EventInputBaseType'; interface FileResourceSelectProps extends EventInputBaseType { onChange: (date: any) => void; value: any; fileType?: string; } declare const EventFileResourceSelect: FC; export default EventFileResourceSelect;