/** * @see {@link https://malkiii.github.io/react-pre-hooks/docs/hooks/useScreenCapture | useScreenCapture} hook. */ export declare const useScreenCapture: (options?: DisplayMediaStreamOptions) => { stream: MediaStream | null; start: () => Promise; stop: () => void; isPending: boolean; };