/** * Resolve a config value (API key, header value, etc.) to an actual value. * - If starts with "!", executes the rest as a shell command and uses stdout (cached) * - Otherwise checks environment variable first, then treats as literal (not cached) */ export declare function resolveConfigValue(config: string): string | undefined; /** * Resolve all header values using the same resolution logic as API keys. */ export declare function resolveHeaders(headers: Record | undefined): Record | undefined; /** Clear the config value command cache. Exported for testing. */ export declare function clearConfigValueCache(): void;