import * as Phaser from 'phaser'; import React from 'react'; import { AlphaProps, BlendModeProps, ComputedSizeProps, CropProps, DepthProps, FlipProps, GameObjectProps, MaskProps, OriginProps, PipelineProps, ScrollFactorProps, TintProps, TransformProps, VisibleProps } from './GameObject'; export interface TextProps extends Omit, 'instance' | 'ref'>, AlphaProps, BlendModeProps, ComputedSizeProps, CropProps, DepthProps, FlipProps, MaskProps, OriginProps, PipelineProps, ScrollFactorProps, TintProps, TransformProps, VisibleProps { instance?: Phaser.GameObjects.Text; text?: string | string[]; style: Phaser.Types.GameObjects.Text.TextStyle; } declare const _default: React.ForwardRefExoticComponent>; export default _default;