export type ManagedAuthType = "api-key" | "device-session"; export type ManagedConfig = { backendUrl: string; authType: ManagedAuthType; credential: string; deviceSessionId?: string | null; deviceLabel?: string | null; }; export declare function readManagedConfig(): Promise; export declare function writeManagedConfig(config: ManagedConfig): Promise;