import { IConfig } from '@signageos/sdk/dist/SosHelper/sosControlHelper'; /** * Extended config interface that includes Auth0 JWT token alongside legacy fields. * When `accessToken` is present, it takes precedence over `identification`/`apiSecurityToken`. */ export interface IExtendedConfig extends IConfig { accessToken?: string; } /** The same as loadConfig in SDK, but respect CLI --profile argument and Auth0 tokens */ export declare function loadConfig(): Promise; /** The same as saveConfig in SDK, but respect CLI --profile argument */ export declare function saveConfig(newConfig: IConfig): Promise; /** The same as updateConfig in SDK, but respect CLI --profile argument */ export declare function updateConfig(partialConfig: Partial): Promise;