UNPKG

@promptbook/documents

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

20 lines (19 loc) 569 B
/// <reference types="react" /> import type { string_book } from '../../../book-2.0/agent-source/string_book'; /** * Props for avatar profile tooltip. */ type AvatarProfileTooltipProps = { agentSource: string_book; position: { top: number; left: number; }; }; /** * Constant for avatar profile tooltip. * * @private internal subcomponent of `<Chat>` component */ export declare const AvatarProfileTooltip: import("react").ForwardRefExoticComponent<AvatarProfileTooltipProps & import("react").RefAttributes<HTMLDivElement>>; export {};