import { PostService } from './post.service';
export declare class PostController {
    private readonly postService;
    constructor(postService: PostService);
    getPosts(page: string, limit: string, search?: string): Promise<{
        data: any[];
        total: number;
        currentPage: number;
    }>;
}
