/** * Utility to unwrap NexaBase API responses into a standard format. * - If the response is paginated (has meta), it returns the full PaginatedResponse object. * - If the response is a single resource, it extracts the .data property. */ export declare function _unwrap(response: any): T;