/*
 * Author: Andrieiev Danil |  danssg08@gmail.com | https://github.com/DanilAndreev
 * Copyright (C) 2020.
 */

/// <reference types="react" />
import {TagableProps} from "../Tagable/Tagable";

export const displayName: string;

/**
 * H1 - react component, designed to create h1 header.
 * @param {TagableProps} props
 * @constructor
 * @see https://material-docs.com/component-apis/h1
 * @example
 * <H1>I am h1 header with tag</H1>
 */
export function H1(props: TagableProps): JSX.Element;
