import { RESPONSE_TYPE } from "../helpers/customTypes";
import { Model, ObjectId } from 'mongoose';
import { LoginRecord } from "bamble_store_schemas";
declare class AuthLoginClass {
    isUserLoggedIn(user_id: ObjectId, token: string, UserLoginRecord: Model<LoginRecord>): Promise<RESPONSE_TYPE>;
}
export declare const AuthLogin: AuthLoginClass;
export {};
