export declare const env: {
    /** Enable debug logging */
    readonly EXPO_DEBUG: boolean;
    /** Enable the beta version of the Expo module template */
    readonly EXPO_BETA: boolean;
    /** Disable telemetry (analytics) */
    readonly EXPO_NO_TELEMETRY: boolean;
    /** Enable the staging environment of Expo, mostly for telemetry */
    readonly EXPO_STAGING: boolean;
    /** Enable the local environment of Expo, mostly for telemetry */
    readonly EXPO_LOCAL: boolean;
};
/**
 * Determines if we're in an interactive environment.
 * Non-interactive when: CI=1/true, Expo's non-interactive flag is set, or stdin is non-TTY.
 */
export declare function isInteractive(): boolean;
