import React from 'react'; import { InputProps } from 'antd/lib/input'; import './styles.less'; export interface ImageInputProps extends Omit { value?: string; onChange?: (value: string) => void; } export declare const ImageInput: React.FC; export declare const BackgroundImageInput: React.FC;