import type { CustomQueryInterface } from '../types'; type ConstructorParams = { next: () => Promise; isLoading: () => boolean; hasNext: () => boolean; }; export declare class CustomQuery implements CustomQueryInterface { private params; constructor(params: ConstructorParams); get isLoading(): boolean; get hasNext(): boolean; next(): Promise; } export {};