import { ReactNode } from "react";
declare type WaitForDeviceProps = {
    deviceId: string;
    children: (DeviceObject: any) => ReactNode;
};
export declare const WaitForDevice: ({ deviceId, children }: WaitForDeviceProps) => JSX.Element;
export {};
