import { BroadcastMessage } from '@crealogix-map/core'; import { ScreenRotation } from './ScreenRotation'; /** * Request the device to only allow specific rotations. */ export declare class ConfigureRotationMessage extends BroadcastMessage { rotation: ScreenRotation; constructor(rotation: ScreenRotation); readonly tag: string; }