export declare type CommentType = { imgURL: string; writer: string; createdAt: string; content: string; }; export declare type RelatedPostType = { imgURL: string; title: string; author: string; date: string; }; export declare type BlogType = { id: string; slug: string; createdAt: string; author: string; isPublished: boolean; thumbnailImage: string; categoryIds: string[]; seos: SeosBlogType[]; description: DescriptionsBlogType; }; export declare type SeosBlogType = { description: string; keyword: string[]; language: string; }; export declare type DescriptionsBlogType = { content: string; language: string; title: string; };