declare const getListFromResponse: <T extends Record<string, any>, U>(response: {
    body: T;
}) => U[] | undefined;

export { getListFromResponse };
