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'; import { AnimationProps } from '../reconciler/elements/GameObject'; export interface SpriteProps extends Omit, 'instance' | 'ref'>, AlphaProps, AnimationProps, BlendModeProps, ComputedSizeProps, DepthProps, FlipProps, MaskProps, OriginProps, PipelineProps, ScrollFactorProps, TintProps, TransformProps, VisibleProps { instance?: Phaser.GameObjects.Sprite; animations?: Phaser.Types.Animations.Animation[]; animation?: string; texture?: string; x?: number; y?: number; frame?: number; } declare const _default: React.ForwardRefExoticComponent>; export default _default;