import { type ObjRef } from "@gooddata/sdk-model"; import { type IGenAIContextObject } from "../types.js"; type GenAiChatContextChooserBodyProps = { inputItems: (IGenAIContextObject & { alternativeTitle?: string; })[]; title: string; titleId: string; search: string; onSearchChange: (search: string) => void; selectedIds?: ObjRef[]; isLoading?: boolean; hasNextPage?: boolean; loadNextPage?: () => void; ariaAttributes: { id: string; role?: string; "aria-labelledby"?: string; }; onSelect: (item: IGenAIContextObject) => void; closeDropdown: () => void; }; export declare function GenAiChatContextChooserBody({ inputItems, title, titleId, search, selectedIds, onSearchChange, isLoading, hasNextPage, loadNextPage, ariaAttributes, onSelect, closeDropdown, }: GenAiChatContextChooserBodyProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GenAiChatContextChooserBody.d.ts.map