import React from 'react';
import { SpaceProps } from 'antd-mobile';
import { BizImageProps } from '../BizImage';
type ImageValue = string | {
    src: string;
    name?: string;
};
export interface ImageFieldProps extends Omit<BizImageProps, 'src'> {
    value?: ImageValue | ImageValue[];
    spaceProps?: SpaceProps;
}
declare const ImageField: React.FC<ImageFieldProps>;
export default ImageField;
