import { type IDataView } from "@gooddata/sdk-backend-spi"; import { type ExplicitDrill, type IDrillEventCallback } from "@gooddata/sdk-ui"; import { type IChartConfig } from "../../../interfaces/chartConfig.js"; export interface IXirrTransformationProps { dataView: IDataView; drillableItems?: ExplicitDrill[]; config?: IChartConfig; onDrill?: IDrillEventCallback; onAfterRender?: () => void; } /** * The React component that handles the transformation of the execution objects into the data accepted by the {@link LegacyHeadline} * React component that this components wraps. It also handles the propagation of the drillable items to the component * and drill events out of it. */ export declare function XirrTransformation({ drillableItems, config, onDrill, onAfterRender, dataView }: IXirrTransformationProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=XirrTransformation.d.ts.map