import { type IKeyDriverAnalysis } from "../../../model/commands/drill.js"; import type { IDashboardCommandFailed } from "../../../model/events/general.js"; /** * @internal */ export interface IUseKeyDriverAnalysisProps { onSuccess?: (event: any) => void; onError?: (event: IDashboardCommandFailed) => void; onBeforeRun?: (cmd: IKeyDriverAnalysis) => void; } /** * @internal */ export declare const useKeyDriverAnalysis: ({ onSuccess, onError, onBeforeRun, }?: IUseKeyDriverAnalysisProps) => { run: (drillDefinition: import("@gooddata/sdk-model").IKeyDriveAnalysis, drillEvent: import("../../../types.js").IDashboardDrillEvent, filters: import("@gooddata/sdk-model").FilterContextItem[], keyDriveItem: import("../../../index.js").IDashboardKeyDriverCombinationItem, correlationId?: string | undefined) => void; status?: import("../../../model/react/useDashboardCommandProcessing.js").CommandProcessingStatus | undefined; }; //# sourceMappingURL=useKeyDriverAnalysis.d.ts.map