/// import { HightlightType } from '../../types'; export declare type ImmersiveProps = { id: string; image: string; title: string; description: string; highlight?: HightlightType; hightlightBorderColor?: string; link: string; state?: any; }; declare const ImmersivePost: ({ id, image, title, description, highlight, hightlightBorderColor, }: ImmersiveProps) => JSX.Element; export default ImmersivePost;