import type { DataLoaderStatus } from '../../core';
export declare const useQueryResponses: <TError>(responses: {
    status: DataLoaderStatus;
    error: TError | null;
    refetch: Function;
}[]) => {
    status: DataLoaderStatus;
    error: NonNullable<TError> | null;
    refetch: () => void;
    refetchErrored: () => void;
};
