import type { KlawConfig } from "../config/types.klaw.js"; export { isSafeChannelEnvVarTriggerName } from "./channel-env-var-names.js"; type ChannelEnvVarLookupParams = { config?: KlawConfig; workspaceDir?: string; env?: NodeJS.ProcessEnv; }; export declare function resolveChannelEnvVars(params?: ChannelEnvVarLookupParams): Record; export declare function getChannelEnvVars(channelId: string, params?: ChannelEnvVarLookupParams): string[]; export declare function listKnownChannelEnvVarNames(params?: ChannelEnvVarLookupParams): string[];