export type DeviceAuthEntry = { token: string; role: string; scopes: string[]; updatedAtMs: number; }; export declare function loadDeviceAuthToken(params: { deviceId: string; role: string; env?: NodeJS.ProcessEnv; }): DeviceAuthEntry | null; export declare function storeDeviceAuthToken(params: { deviceId: string; role: string; token: string; scopes?: string[]; env?: NodeJS.ProcessEnv; }): DeviceAuthEntry; export declare function clearDeviceAuthToken(params: { deviceId: string; role: string; env?: NodeJS.ProcessEnv; }): void;