/// import { HightlightType } from '../../types'; declare type CommonProps = { id: string; title: string; description: string; images: string[]; gridView?: boolean; state?: object; isPDF?: boolean; highlight?: HightlightType; hightlightBorderColor?: string; }; declare type Props = CommonProps; declare const TestImage: ({ id, title, description, images, gridView, highlight, hightlightBorderColor, }: Props) => JSX.Element; export default TestImage;