/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { TypographyProps } from './TypographyProps.js'; import * as React from 'react'; /** * @hidden */ export interface TypographyHandle { /** * The TypographyHandle element. */ element: HTMLElement | null; } /** * Represents the [KendoReact Typography component](https://www.telerik.com/kendo-react-ui/components/common/typography). * * @example * ```jsx * const App = () => { * return ( * Heading 2 * ); * }; * ``` */ export declare const Typography: { h1: React.ForwardRefExoticComponent; h2: React.ForwardRefExoticComponent; h3: React.ForwardRefExoticComponent; h4: React.ForwardRefExoticComponent; h5: React.ForwardRefExoticComponent; h6: React.ForwardRefExoticComponent; p: React.ForwardRefExoticComponent; code: React.ForwardRefExoticComponent; pre: React.ForwardRefExoticComponent; };