import type { User } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type FinishSignUpInput = { user: { email: string; signup_token: string; civility?: string | null; first_name?: string | null; last_name?: string | null; newsletter?: boolean | null; phone?: string | null; terms_of_service_signed?: boolean | null; }; }; declare const finishSignUp: (http: HttpClient) => { query: (input: FinishSignUpInput) => Promise, undefined, ApiError>>; }; export default finishSignUp;