import type { User } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type UserInput = { user: { address?: string | null; birthdate?: Date | null; city?: string | null; civility?: string | null; country?: string | null; confirmation_code?: string | null; email?: string | null; first_name?: string | null; is_delete?: boolean | null; last_name?: string | null; newsletter?: boolean | null; nationality?: string | null; phone?: string | null; postal_code?: string | null; owner_general_rental_condition_signed?: boolean | null; terms_of_service_signed?: boolean | null; unverified_email?: string | null; unverified_phone?: string | null; }; }; declare const modifyUserInfo: (http: HttpClient) => { query: (input: UserInput) => Promise, undefined, ApiError>>; }; export default modifyUserInfo;