interface IFinderProps { scanning: boolean; capabilities: MediaTrackCapabilities; onOff?: boolean; startScanning: (deviceId?: string | undefined) => void; stopScanning: () => void; torch?: { status: boolean; toggle: (value: boolean) => void; }; zoom?: { value: number; onChange: (value: number) => void; }; } export default function Finder(props: IFinderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Finder.d.ts.map