import { PointF, Vector3 } from '../utils'; import { Notification } from './'; export declare abstract class Screen { static readonly Width: number; static readonly Height: number; static readonly AspectRatio: number; static readonly ScaledWidth: number; static showSubtitle(message: string, duration?: number): void; static displayHelpTextThisFrame(message: string): void; static showNotification(message: string, blinking?: boolean): Notification; static worldToScreen(position: Vector3, scaleWidth?: boolean): PointF; }