import { ElementProps } from "../../../../types/shared.mjs"; import React from "react"; //#region src/components/styles/typography/heading-caption/HeadingCaption.d.ts type HeadingCaptionProps = { size: 'm' | 'l' | 'xl'; variant?: 'bottom'; } & ElementProps<'span'>; declare const HeadingCaption: { ({ size, variant, className, ...props }: HeadingCaptionProps): React.JSX.Element; displayName: string; }; //#endregion export { HeadingCaption, HeadingCaptionProps };