/** * Shared jq filtering utility for CLI commands. * * @packageDocumentation */ /** * Apply a jq expression to JSON data using the system `jq` binary. * * @param data - Data to filter * @param expr - jq expression * @param options - jq output controls * @returns Filtered output string, or the original JSON if jq fails */ declare function applyJq(data: unknown, expr: string, options?: { compact?: boolean; }): Promise; export { applyJq };