import convict from 'convict';
export type Config = ReturnType<typeof loadConfig>;
export declare function loadConfig(): convict.Config<{
    testScenariosPath: string;
    n8n: {
        baseUrl: string;
        user: {
            email: string;
            password: string;
        };
    };
    scenarioNamePrefix: string;
    k6: {
        executablePath: string;
        apiToken: undefined;
    };
}>;
