import { Repository } from 'typeorm'; import Post from '@server/models/post.model'; import { IPost, IUser } from '@shared/interfaces/model'; declare const app: import("express-serve-static-core").Express; export declare const isPostPublished: (post?: IPost) => boolean; export declare const createPostVersion: (postRepository: Repository, post: IPost, author: IUser) => Promise; export default app;