export declare const getToken: () => string | null; export declare const getApiKey: () => string | null; export declare const setToken: (token: string) => void; export declare const setApiKey: (token: string) => void; export declare const removeToken: () => void; export declare const removeApiKey: () => void; export declare const getTokenExpireAt: () => number; export declare const getApiKeyExpireAt: () => number; export declare const getDistantApi: () => string | null; export declare const getDistantApiPort: () => string | null; export declare const changeDistantApi: () => { DISTANT_API_PORT: string; DISTANT_API: string; };