import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type PhoneInput = { user: { phone?: string; email?: string; uuid?: string; provider?: 'google' | 'apple'; }; }; export type PhoneResponse = { success: boolean; }; declare const phoneSignIn: (http: HttpClient) => { query: (input: PhoneInput) => Promise>; }; export default phoneSignIn;