import { HttpModule } from "./http/httpModule";
export declare class SearchBase {
    protected readonly http: HttpModule;
    protected readonly searchParams: URLSearchParams;
    constructor(page?: string, count?: string);
    protected append(name: string, value: string): void;
    page(value: string | number): void;
    limit(value: string | number): void;
    requestWithRetry(tentativies: number): Promise<any>;
    nextPage(): Promise<any>;
    request(): Promise<any>;
}
