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 CreateGeneralConditionsInput = { terms_and_condition: { content: { fr: string; en: string; }; }; type: GeneralConditionsType; }; declare const createGeneralConditions: (http: HttpClient) => { query: ({ type, ...input }: CreateGeneralConditionsInput) => Promise>; }; export default createGeneralConditions;