interface InObj extends Object { _id: string; } declare type OutObj = Omit & { id: string; }; export declare const normalizeResponse: (data: T) => OutObj; export {};