import { State } from '../../shared/State';
export interface EnvInfoInterface {
    immutable: boolean;
    locked: boolean;
    region: string;
    tier: string;
    warning_message_html: string;
    message_box_title: string;
    message_box_html: string;
    message_variant: string;
    config_promotion_done: boolean;
    placeholder_management: 'CUSTOMER' | 'SRE';
    placeholder_management_migration_date: string;
}
/**
 * Get info about the environment
 * @returns {Promise<EnvInfoInterface>} a promise that resolves to an environment info object
 */
export declare function getEnvInfo({ state, }: {
    state: State;
}): Promise<EnvInfoInterface>;
//# sourceMappingURL=EnvInfoApi.d.ts.map