import React, { Component } from 'react'; import './Heading.css'; export type HeadingProps = { /** * Pass the class names to be appended to this prop */ className?: string; /** * Name of the html tag */ tagName?: 'h0' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; /** * Data that you want to display in tag */ text?: string; /** * Pass an ID that you can use for testing purposes. It is applied as a data attribute (data-test-id) */ testId?: string; forwardRef?: any; }; export declare class Heading extends Component { render(): React.JSX.Element; } export default Heading;