import type { RelationshipType, SerializerResponseApi } from './types'; declare const formatResponseApi: (response: SerializerResponseApi) => SerializerResponseApi | { included?: Record | undefined; meta?: Record | undefined; data: { id: string; } | { [x: string]: string | string[] | null; } | ({ id: string; } | { [x: string]: string | string[] | null; } | { attributes: Record; id: string; meta?: Record | undefined; relationships?: { [key: string]: { data: RelationshipType | RelationshipType[] | null; }; } | undefined; type: string; })[]; headers: Record | undefined; }; export { formatResponseApi };