import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface HeadingProperties {
    theme?: Theme;
    type?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
    style?: React.CSSProperties;
    className?: string;
}
declare const Heading: React.FC<React.PropsWithChildren<HeadingProperties>>;
export default Heading;
