import { IArbeitsAgenturJobArgsProps } from "../types/arbeitsAgenturJobArgsTypes";
import { JobSearchResponse } from "../types/jobSearchResponseTypes";
/**
 * Fetches job search results based on the provided parameters.
 * @param {Partial<IArbeitsAgenturJobArgsProps>} [params] - The search parameters (optional).
 * @returns {Promise<JobSearchResponse | null>} - The job search results.
 */
declare function jobsSearchOld(params?: Partial<IArbeitsAgenturJobArgsProps>): Promise<JobSearchResponse | null>;
/**
 * @function jobsSearch without OAuth access token it is using the new auth header "X-Api-Key"
 * Fetches job search results based on the provided parameters.
 * @param {Partial<IArbeitsAgenturJobArgsProps>} [params] - The search parameters (optional).
 * @returns {Promise<JobSearchResponse | null>} - The job search results.
 */
declare function jobsSearch(params?: Partial<IArbeitsAgenturJobArgsProps>): Promise<JobSearchResponse | null>;
export { jobsSearchOld, jobsSearch };
