import { Auth0Settings } from '@signageos/cli-common'; /** * Auth0 settings for the signageOS CLI tool (regular API). * * These connect to the regular signageOS API (not admin API). * Precedence: SOS_AUTH0_* env var (user-explicit override) > profile field in ~/.sosrc > SOS_DEFAULT_AUTH0_* env var (package default). */ export declare function getAuth0Settings(): Auth0Settings; /** * Read the Box URL from the active profile. * Precedence: SOS_BOX_HOST env var (user-explicit override) > profile field in ~/.sosrc > SOS_DEFAULT_BOX_HOST env var (package default). */ export declare function getBoxUrl(): string;