import * as React from "react"; import { ModelTriggersStatusSummary, ModelTriggerTableRecord, Nullable, PipelinesChart } from "instill-sdk"; import { SelectOption } from "@instill-ai/design-system"; import { PipelineTriggersStatusSummary } from "../../../lib"; type ActivityTabProps = { pipelinesChart: { isLoading: boolean; refetch: () => void; }; modelsChart: { isLoading: boolean; refetch: () => void; }; pipelinesChartList: PipelinesChart[]; modelsChartList: ModelTriggerTableRecord[]; selectedTimeOption: SelectOption; setSelectedTimeOption: React.Dispatch>; pipelineTriggersSummary: Nullable; modelTriggersSummary: Nullable; }; export declare const ActivityTab: ({ pipelinesChart, modelsChart, pipelinesChartList, modelsChartList, selectedTimeOption, setSelectedTimeOption, pipelineTriggersSummary, modelTriggersSummary, }: ActivityTabProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ActivityTab.d.ts.map