import { FC, HTMLAttributes } from "react"; //#region src/components/data-display/heading/heading.d.ts type Props = { type: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; lineClamp?: number; } & Omit, 'className' | 'style'>; declare const Heading: FC; //#endregion export { Heading };