import type { HeadingLevel, HeadingProps, HeadingVariantPropType, LabelWithExpertSlotPropType } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolHeading implements HeadingProps {
    render(): JSX.Element;
    _label: LabelWithExpertSlotPropType;
    _level?: HeadingLevel;
    _secondaryHeadline?: string;
    _variant?: HeadingVariantPropType;
}
