/// <reference types="node" />
import { ValidationError } from 'joi';
export declare function validateGenesysEnvVariables(env: NodeJS.ProcessEnv): {
    genesysVariables?: {
        region: string;
        oAuthClientId: string;
        oAuthClientSecret: string;
    };
    error?: ValidationError;
};
