import IRemoteConfig from '../../types/IRemoteConfig.js';
/**
 * Class to interact with the config API endpoint.
 *
 * @example
 * const repo = new ConfigRepository();
 * const config = await repo.get();
 */
export default class ConfigRepository {
    remotePathOrUrl: string;
    constructor(remotePathOrUrl?: string);
    /**
     * Get the configuration from the API server.
     */
    get(): Promise<IRemoteConfig>;
}
