import React, { Component } from 'react'; interface Translations { title: string; withoutLinkedDeviceDescription: string; withoutLinkedDeviceTextButton: string; withLinkedDeviceDescription: string; withLinkedDevicePrimaryTextButton: string; withLinkedDeviceSecondaryTextButton: string; withLinkedSubtitle: string; } interface Props { reconnectionOrLinkWithProbeTranslations: Translations; goToProbeProbePairing: Function; children: Component | Element; } declare const NoProbeWrapper: ({ reconnectionOrLinkWithProbeTranslations: translations, goToProbeProbePairing, children, }: Props) => React.JSX.Element; export default NoProbeWrapper; //# sourceMappingURL=index.d.ts.map