export declare const mockBlogPosts: {
    id: number;
    title: string;
    summary: string;
}[];
export declare const mockComments: {
    id: number;
    postId: number;
    content: string;
}[];
