@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
17 lines (16 loc) • 498 B
TypeScript
import type { GeoJsonObject } from 'geojson';
/**
* Props for `<ChatMessageMap/>`.
*
* @private internal helper of `<ChatMessageItem/>`
*/
type ChatMessageMapProps = {
data: GeoJsonObject;
};
/**
* Renders a Leaflet map for GeoJSON data inside the chat bubble and exposes a modal control for a larger view.
*
* @private internal helper of `<ChatMessageItem/>`
*/
export declare function ChatMessageMap({ data }: ChatMessageMapProps): import("react/jsx-runtime").JSX.Element;
export {};