import { QueryBundleRequest, QueryResultBundle } from '@sage-bionetworks/synapse-types';
type UseOnQueryDataChangeOptions = {
    queryBundleRequest: QueryBundleRequest;
    onChange: (data: QueryResultBundle) => void;
};
/**
 * Calls the onChange callback with the current QueryResultBundle when the data for the passed query changes
 * @param options
 */
export default function useOnQueryDataChange(options: UseOnQueryDataChangeOptions): void;
export {};
//# sourceMappingURL=useOnQueryDataChange.d.ts.map