/** * * @description 定义屏幕方向 * 桥接type: 71 */ export declare const setScreenOrientation: (params: { /** 屏幕方向. 0: 竖屏. 1: 横屏 */ orientation: 0 | 1; } & { success?: ((res: void) => void) | undefined; fail?: (error: import('./bridge-code').BridgeCode) => void; complete?: () => void; }) => Promise;