import { ThumborSettingType } from '../Common/types'; export declare type BlogRecentPropsType = { classes: ClassesType; thumborSetting?: ThumborSettingType; linkPrefix?: string; showImage?: boolean; showDate?: boolean; categoryId?: string; limit?: number; filterBySlug?: string; fallbackImageUrl?: string; loadingComponent?: any; errorComponent?: any; lazyLoadedImage?: boolean; widthImage?: number; heightImage?: number; }; export declare type BlogRecentType = { id: string; slug: string; author: string; descriptions: Array<{ title: string; }>; thumbnailImage: string; createdAt: number; }; declare type ClassesType = { containerClassName: string; blogRecentClassName: string; imageClassName: string; labelContainerClassName: string; titleClassName: string; dateClassName: string; }; export {};