import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type CallbackRequestResponse = { id: string; phone: string; }; declare const createCallbackRequest: (http: HttpClient) => { query: (input: { phone: string; }) => Promise>; }; export default createCallbackRequest;