import { type OnProgress } from '../sandboxTypes'; import { type DeviceCore, type NrfutilDevice, type ProtectionStatus } from './common'; type DeviceFamily = 'NRF51_FAMILY' | 'NRF52_FAMILY' | 'NRF53_FAMILY' | 'NRF91_FAMILY'; export interface GetProtectionStatusResult { core: DeviceCore; deviceFamily?: DeviceFamily; protectionStatus: ProtectionStatus; serialNumber: string; } declare const _default: (device: NrfutilDevice, core?: DeviceCore, onProgress?: OnProgress, controller?: AbortController) => Promise; export default _default; //# sourceMappingURL=getProtectionStatus.d.ts.map