import type { Environment } from "#environments/model"; import type { MerchantConfig } from "#config/schema"; export { loadConfig, interpolate, type LoadedConfig } from "#config/loader"; export { merchantHome } from "#config/paths"; export { loadOperatorRole, saveOperatorRole } from "#config/operator-profile"; export { setProjectTheme } from "#config/project-store"; export { ConfigSchema, type MerchantConfig, operatorRoles, type OperatorRole, } from "#config/schema"; export { configDigest, isTrusted, trustProject } from "#config/trust-store"; export declare function selectEnvironment(config: MerchantConfig, cwd: string, requested?: string, env?: NodeJS.ProcessEnv): { name: string; environment: Environment; };