/** * Pretty print an object for debugging. * Uses util.inspect in Node.js environments, falls back to JSON.stringify elsewhere. */ export declare function prettyObject(object: unknown): string; /** * Converts a field name to a relationship label * e.g., "userId" -> "user", "organizationId" -> "organization" * If field doesn't end with "id", uses the target model name */ export declare function fieldNameToLabel(fieldName: string, targetModel: string): string;