import User from "./user.js";
interface IProfileParams {
    isEmailVerified?: boolean;
    isPhoneVerified?: boolean;
}
declare class Profile {
    userId: string;
    gender: string;
    birthDay: null | string;
    photo: null | string;
    location: null | string;
    params: IProfileParams;
    updatedAt: Date;
    deletedAt: Date;
    user: User;
}
export { Profile as default, IProfileParams };
