interface Config {
    apiStaging: string;
    apiProduction: string;
    ton: Readonly<{
        score: string;
        nodeUrl: string;
    }>;
    tonTestnet: Readonly<{
        score: string;
        nodeUrl: string;
    }>;
    tonApiPath: (hash: string) => string;
}
declare const config: Readonly<Config>;

export { config };
