import { User } from "./user";
export declare type FriendshipStatus = "pending" | "accepted";
export interface Friendship {
    id: string;
    from: User;
    to: User;
    fromId: string;
    toId: string;
    status: FriendshipStatus;
    responseDate?: Date;
}
