import React from 'react'; import type { MockCode } from '../../bluetooth/readMeter'; import type { ReadStrategy } from '../../parsing/ReadStrategy'; interface StepsTranslations { titleWithDate: string; titleWithoutDate: string; interactionWithProbeDescription: string; interactionWithProbeTextButton: string; readingResultTextButton: string; titleSuccessWithDate: string; titleSuccessWithoutDate: string; onErrorWithDate: string; onErrorWithoutDate: string; meterFamilyTypePrepositionBadge: string; } interface Props { onClose: Function; translations: StepsTranslations; onSuccess: Function; loadingCurrentDevice: boolean; mockCode?: MockCode; readStrategy: ReadStrategy; reconnectionOrLinkWithProbeTranslations: any; goToProbeProbePairing: Function; time: String; date?: String; } declare const ChangeDatetime: ({ onClose, translations, onSuccess, loadingCurrentDevice, readStrategy, mockCode, reconnectionOrLinkWithProbeTranslations, goToProbeProbePairing, time, date, }: Props) => React.JSX.Element; export default ChangeDatetime; //# sourceMappingURL=index.d.ts.map