import { HTMLAttributes, FC, PropsWithChildren } from "react"; import { defaultRenderFn } from "@kickstartds/core/lib/core"; import { HeadlineProps } from "./HeadlineProps"; import "./headline.scss"; export type { HeadlineProps }; interface RenderFunctions { renderContent?: typeof defaultRenderFn; renderSubheadline?: typeof defaultRenderFn; } export declare const Headline: import("react").ForwardRefExoticComponent, "style"> & import("react").RefAttributes>; export declare const HeadlineProvider: FC;