import { UserError } from './error_utils'; import { Result } from './result'; export declare enum RemoteConfigErrorName { REMOTE_CONFIG_IS_NOT_VALID = "remoteConfigIsNotValid" } export interface RemoteConfigErrorInvalid { type: RemoteConfigErrorName.REMOTE_CONFIG_IS_NOT_VALID; file?: string; message: string; } export type RemoteConfigErrorInfo = RemoteConfigErrorInvalid; export interface RemoteConfig { blockId: string; baseId: string; server?: string; apiKeyName?: string; bundleCdn?: string; } export declare function validateRemoteConfig(value: unknown): Result>;