import * as Phaser from 'phaser'; import { AlphaProps, BlendModeProps, ComputedSizeProps, DepthProps, FlipProps, OriginProps, PipelineProps, ScrollFactorProps, TransformProps, VisibleProps, MaskProps, TintProps, GameObjectProps } from './GameObject'; import React from 'react'; export interface ImageProps extends Omit, 'instance' | 'ref'>, AlphaProps, BlendModeProps, ComputedSizeProps, DepthProps, FlipProps, MaskProps, OriginProps, PipelineProps, ScrollFactorProps, TintProps, TransformProps, VisibleProps { instance?: Phaser.GameObjects.Image; texture?: string; frame?: string | number; } declare const _default: React.ForwardRefExoticComponent>; export default _default;