import type { GeneralConditions, GeneralConditionsType } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetGeneralConditionsInput = { page: string; type: GeneralConditionsType; }; declare const getGeneralConditions: (http: HttpClient) => { query: (input: GetGeneralConditionsInput) => Promise>; }; export default getGeneralConditions;