import type { User } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type SignUpTokenInput = { user: { email: string; signup_token: string; }; }; declare const tokenSignUp: (http: HttpClient) => { query: (input: SignUpTokenInput) => Promise, undefined, ApiError>>; }; export default tokenSignUp;