export declare const MIN_FOV = 1; export declare const MAX_FOV = 179; export declare function clampFov(value: number): number; /** Vertical FOV (degrees) that yields the given horizontal FOV (degrees) at aspect = width / height. */ export declare function verticalFovFromHorizontal(horizontalFov: number, aspect: number): number;