import type { Session } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type SignInInput = { email: string; password: string; }; declare const signIn: (http: HttpClient) => { query: (input: SignInInput) => Promise, undefined, ApiError[]>>; }; export default signIn;