import { WebPlugin } from '@capacitor/core'; import type { OrientationLockOptions, ScreenOrientationPlugin, ScreenOrientationResult } from './definitions'; export declare class ScreenOrientationWeb extends WebPlugin implements ScreenOrientationPlugin { constructor(); orientation(): Promise; lock(options: OrientationLockOptions): Promise; unlock(): Promise; }