import { type InsightPickerSortBy, type InsightPickerSortDirection } from "@gooddata/sdk-ui-ext"; /** * @internal */ export interface IInsightPickerPanelProps { onClose: () => void; searchQuery: string; onSearchChange: (query: string) => void; sortBy: InsightPickerSortBy; sortDirection: InsightPickerSortDirection; onSortChange: (sortBy: InsightPickerSortBy, sortDirection: InsightPickerSortDirection) => void; authorFilter: string[]; onAuthorFilterChange: (authorIds: string[]) => void; tagFilter: string[]; onTagFilterChange: (tagIds: string[]) => void; } /** * @internal */ export declare function InsightPickerPanel({ onClose, searchQuery, onSearchChange, sortBy, sortDirection, onSortChange, authorFilter, onAuthorFilterChange, tagFilter, onTagFilterChange }: IInsightPickerPanelProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=InsightPickerPanel.d.ts.map