import { Model, Sequelize, CreationOptional } from "sequelize";
import { IFollowAttributes, IFollowCreationAttributes } from "../interfaces/IFollow";
export default class Follow extends Model<IFollowAttributes, IFollowCreationAttributes> implements IFollowAttributes {
    id: string;
    projectId: string;
    followerId: string;
    followedId: string;
    createdAt: CreationOptional<Date>;
    static initModel(sequelize: Sequelize): void;
    /**
     * Define associations to other models
     */
    static associate(): void;
}
