export declare const DEFAULT_SSO_URL = "https://tcct-sso.vtscloud.vn"; export declare const globalSsoUrlStore: { get: () => string; set: (url: string) => void; }; export declare const KEYCLOAK_CONFIG: { realm: string; clientId: string; scope: string; }; export declare const KEYTAR_SERVICE_NAME = "VauthzCLI"; export declare const KEYTAR_ACCOUNT_NAME = "DefaultUser"; export declare const KEYTAR_USER_TOKEN_ACCOUNT = "UserToken"; export declare const KEYTAR_API_TOKEN_ACCOUNT = "ApiToken"; export declare const KEYTAR_ACTIVE_TOKEN_TYPE = "ActiveTokenType"; export declare const KEYTAR_API_URL_ACCOUNT = "ApiUrl"; export declare const KEYTAR_SSO_URL_ACCOUNT = "SsoUrl"; export declare const KEYTAR_REGION_ACCOUNT = "Region"; export declare const KEYTAR_ENV_ID_ACCOUNT = "EnvId"; export declare const getAuthUrl: () => string; export declare const getTokenUrl: () => string;