import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import type { JSXBase } from '../../stencil-public-runtime';
import { type BadgeTextPropType, type HideLabelPropType, type KoliBriIconsProp, type LabelWithExpertSlotPropType } from '../../schema';
export type SpanProps = JSXBase.HTMLAttributes<HTMLSpanElement> & {
    label: LabelWithExpertSlotPropType;
    badgeText?: BadgeTextPropType;
    allowMarkdown?: boolean;
    icons?: KoliBriIconsProp;
    hideLabel?: HideLabelPropType;
};
declare const KolSpanFc: FC<SpanProps>;
export default KolSpanFc;
