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>, post: IPost, author: IUser) => Promise<IPost>;
export default app;
