import type { Experience } from '../../../../../../entities/index.ts'; import { type HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetExperiencesInput = { pagination?: { per: string; page: string; }; }; declare const getExperiences: (http: HttpClient) => { query: (input?: GetExperiencesInput) => Promise>; }; export default getExperiences;