import type { InternalDeviceLog, SupervisorLog } from './struct.js'; export declare function convertLogs(logs: SupervisorLog[]): InternalDeviceLog[]; export declare function convertLog(log: { [key in keyof SupervisorLog]: unknown; }): InternalDeviceLog | undefined;