import { Club, Comment, FollowAlert, Post, Reply, Ride, RideAlert, User } from '../../types'; declare type Relation = { userId: string; followingIds: string[]; requestedIds: string[]; clubIds: string[]; requestedClubIds: string[]; }; declare const userSchema: (User & { verified?: boolean; })[]; declare const relationsSchema: Relation[]; declare const ridesSchema: Ride[]; declare const clubsSchema: Club[]; declare const rideAlertsSchema: RideAlert[]; declare const followAlertsSchema: FollowAlert[]; declare const commentsSchema: Comment[]; declare const repliesSchema: Reply[]; declare const clubPostsSchema: Post[]; declare const clubPostLikesSchema: { postId: string; likedUserIds: string[]; }[]; declare const clubPostCommentsSchema: { postId: string; commentIds: string[]; }[]; declare const rideLikesSchema: { rideId: string; likedUserIds: string[]; }[]; declare const rideAttendancesSchema: { rideId: string; attendingUserIds: string[]; }[]; declare const rideCommentsSchema: { rideId: string; commentIds: string[]; }[]; export { Relation, userSchema, relationsSchema, ridesSchema, clubsSchema, rideAlertsSchema, commentsSchema, repliesSchema, clubPostsSchema, clubPostLikesSchema, clubPostCommentsSchema, rideLikesSchema, rideCommentsSchema, rideAttendancesSchema, followAlertsSchema };