import { type WhookMain } from '../types/base.js';
export type WhookEnvironmentsConfig = 'all' | WhookMain['AppEnv'][] | undefined;
export declare function checkEnvironment(environments: WhookEnvironmentsConfig, currentEnvironment: WhookMain['AppEnv']): boolean;
