import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; /** * HID Label Props * */ export interface HIDHeadingProps extends HIDComponentProps { /**Variant of the label*/ variant: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'custom'; /**Color of the label, Eg: #00AA02, red*/ color?: string; /** Size in px */ size?: number; /** Font family of the label*/ fontFamily?: string; } export interface HIDHeadingState { } /** * ### The API documentation of the HID Label React component. Learn more about the properties and the API Methods. * */ export default class HIDHeading extends React.Component { private getCustomHeading; private getFixedHeading; private getHeading; render(): JSX.Element; }