import { PerspectiveCamera, Texture, WebGLRenderer } from 'three';
/**
 * Read-back the normalized device coordinates from a depth texture
 */
export declare function readDepth(depthTexture: Texture, renderer: WebGLRenderer, camera: PerspectiveCamera, idx?: number): Promise<number | number[] | null>;
