@acrsolutions/chat-components
Version:
Un set di componenti per la creazione di un'applicazione di messaggistica
10 lines (9 loc) • 442 B
TypeScript
import type { ComponentProps } from 'react';
import { HighlightResearch } from '../HighlightResearch';
export declare function ImageElement({ imgUrl, imgCaption, searchString, focusedRefIndex, onSearchRefs, }: {
imgUrl: string;
imgCaption: string | null;
focusedRefIndex?: number;
searchString?: string;
onSearchRefs?: ComponentProps<typeof HighlightResearch>['onSearchRefs'];
}): import("react/jsx-runtime").JSX.Element;