import type { User } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type AddInvitationInput = { comment: string; email: string; first_name: string; last_name: string; locale: string; phone: string; }; declare const addInvitation: (http: HttpClient) => { query: (input: AddInvitationInput) => Promise, undefined, ApiError>>; }; export default addInvitation;