/**
 * Add opinionated environment variables to the environment
 *
 * - `APP_NAME`
 * - `PR_NUMBER`
 * - `TENANT_ID` (if applicable)
 *
 * @param appName - The name of the app
 * @param prNumber - The pull request number
 * @param tenantId - The tenant ID (if applicable)
 * @param env - The current environment variables to append to (not mutated)
 * @returns The environment variables with the opinionated environment variables added
 */
export declare const addOpinionatedEnv: ({ appName, prNumber, tenantId }: {
    appName: string;
    prNumber: number | undefined;
    tenantId: string | undefined;
}, env?: Record<string, string>) => Record<string, string>;
