import { type ComponentType } from "react"; import { type ICoreChartProps } from "../../interfaces/chartProps.js"; import { type IHeadlineTransformationProps } from "./HeadlineProvider.js"; /** * @internal */ interface ICoreHeadlineExtendedProps { headlineTransformation: ComponentType; } /** * @internal */ declare const CoreHeadline: ComponentType; /** * NOTE: exported to satisfy sdk-ui-ext; is internal, must not be used outside of SDK; will disapppear. */ export type { ICoreHeadlineExtendedProps }; export { CoreHeadline }; //# sourceMappingURL=CoreHeadline.d.ts.map