import React from 'react';
import './Heading.scss';
export type size = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
export interface Props {
    Type: size;
    HeadingClass?: any;
    children: string;
    HeadingId?: any;
    style?: React.CSSProperties;
}
export declare const Heading: ({ Type: Element, HeadingClass, children, HeadingId, style }: Props) => import("react/jsx-runtime").JSX.Element;
export default Heading;
