/** * Extract a list of object rows from an unknown API response. * Supports either direct arrays or object wrappers (for example {items: [...]}). */ export declare function pickList(result: unknown, keys?: string[]): Record[]; /** * Extract rows from unknown API responses, coercing primitive list entries * into objects under the given key for tabular display. */ export declare function pickRows(result: unknown, keys?: string[], primitiveKey?: string): Record[];