import { LayerProps } from '../../layout'; declare type ImageRequireSource = number; declare type ImageSourcePropType = ImageRequireSource | string; export declare type ResizeModeType = 'cover' | 'contain' | 'stretch' | 'repeat' | 'center'; export interface ResizeModeProps { source: ImageSourcePropType; resizeMode?: ResizeModeType; backgroundSize?: string; } export interface ImageProps extends Omit, Omit { label?: string; } export {};