/** * CaptureOrientationPill — diagnostic pill showing the operator's * current hold orientation as detected by the pose-derived hook. * * Useful for diagnosing rotation issues — if the pill says * `landscape-left` but the band overlay is rendering as if it's * `portrait`, there's a mismatch between the JS orientation hook * and the engine's pose-derived isLandscape signal. * * Pinned top-left below the status bar. Layer-2 hosts can mount * this directly; Layer-1 `` mounts it automatically when * `settings.debug = true`. */ import React from 'react'; export interface CaptureOrientationPillProps { /** Current device orientation (typically from useDeviceOrientation). */ orientation: string; /** Top inset for safe-area placement. Pill pinned `topInset + 56`. */ topInset?: number; } export declare function CaptureOrientationPill({ orientation, topInset, }: CaptureOrientationPillProps): React.JSX.Element; //# sourceMappingURL=CaptureOrientationPill.d.ts.map