import { Post } from '../../../types'; declare const posts: Post[]; declare const clubPostLikes: { postId: string; likedUserIds: string[]; }[]; declare const clubPostComments: { postId: string; commentIds: string[]; }[]; export { posts, clubPostLikes, clubPostComments };