import { APICommand } from '../index.js'; export interface MetadataItem { description?: string; key: string; name?: string; type: string; valueType: string; version?: string; } export declare const ACTIVITY_CONFIG_TYPES: Set; /** * Resolve a user-provided NAME to (configType, configKey) by listing metadata * and matching on key. Returns either the matched item or an error string. * * Mirrors the resolution pattern in `cli/src/commands/delete.ts` so callers * can pass any of: feature_flag, config, log_level, segment, schema. */ export declare function resolveConfigByKey(command: APICommand, key: string): Promise<{ configType: string; configKey: string; item: MetadataItem; } | { error: string; }>; export declare function normalizeConfigType(input: string): string | null;