import { type IInsight } from "@gooddata/sdk-model"; import { type CustomDashboardInsightListItemComponent, type CustomDashboardInsightListItemComponentProps, type IWrapInsightListItemWithDragComponent } from "../types.js"; /** * @internal */ export interface IDraggableInsightListItemProps { WrapInsightListItemWithDragComponent?: IWrapInsightListItemWithDragComponent; ListItemComponent: CustomDashboardInsightListItemComponent; listItemComponentProps: CustomDashboardInsightListItemComponentProps; insight: IInsight; } /** * @internal */ export declare function DraggableInsightListItem(props: IDraggableInsightListItemProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=DraggableInsightListItem.d.ts.map