import type { CameraOrientation } from 'react-native-vision-camera'; /** * Converts a {@linkcode CameraOrientation} to its equivalent clockwise * rotation angle in degrees. * * @internal * @worklet */ export declare function orientationToDegrees(orientation: CameraOrientation): number; /** * Normalizes the given rotation in degrees into the range from * `0` to `360` (not including `360`). * * @internal * @worklet */ export declare function normalizeRotationDegrees(degrees: number): number;