import { IArbeitsAgenturJobArgsProps } from "../types/arbeitsAgenturJobArgsTypes"; import { JobSearchResponse } from "../types/jobSearchResponseTypes"; /** * @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} [params] - The search parameters (optional). * @param {number} [version=6] - The API version to use (default is latest). * @returns {Promise} - The job search results. */ declare function jobsSearch(params?: Partial, version?: number): Promise; export { jobsSearch };