/** One device to health-check: its profile id plus the origin and token to reach it with. */
export interface DeviceCheck {
    id: string;
    url: string;
    token: string;
}
/** Ping each saved device and map its id to whether it answered (#1072). Bad entries are dropped. */
export declare function checkDevices(devices: DeviceCheck[]): Promise<Record<string, boolean>>;
//# sourceMappingURL=devices.d.ts.map