import type { ConfigInput, Platform } from "./types/index.js";
import type { RequiredDeep } from "./types/utils.js";
export type HotUpdaterConfigOptions = {
    platform: Platform;
    channel: string;
} | null;
export type ConfigResponse = RequiredDeep<ConfigInput>;
export declare const loadConfig: (options: HotUpdaterConfigOptions) => Promise<ConfigResponse>;
export declare const loadConfigSync: (options: HotUpdaterConfigOptions) => ConfigResponse;
