import { CoreTypes } from '@nativescript/core'; /** * Reactive screen orientation and utilities to manage the orientation. * * @param target * @param options */ export declare function useScreenOrientation(options?: { onChange?: (orientation: CoreTypes.DeviceOrientationType) => void; }): { orientation: any; setOrientation: (value: "landscape" | "landscaperight" | "landscapeleft" | "portrait", animation?: boolean) => void; enableRotation: () => void; disableRotation: () => void; };