import { Context } from '~server/data/interfaces'; declare const login: (input: any, context: Context) => Promise<{ status: boolean; data: { id: string; }; } | { status: boolean; data?: undefined; }>; export default login;