| export interface ICardBlog {
    background_color?: string;
    details_color?: string;
    link_color?: string;
    title: string;
    text_details: string;
    route: string;
    image: any;
}
export interface ICardBlogStyled {
    background_color?: string | undefined;
    details_color?: string | undefined;
    link_color?: string | undefined;
}
 |