export interface HeadingProps {
    /**
     * What level of heading is this?
     */
    level?: number;
    /**
     * WThe text of the title
     */
    text: string;
}
