UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

20 lines (19 loc) 694 B
import { BoxProps, ElementProps, Factory, StylesApiProps } from '../../core'; export type TypographyStylesNames = 'root'; export interface TypographyProps extends BoxProps, StylesApiProps<TypographyFactory>, ElementProps<'div'> { } export type TypographyFactory = Factory<{ props: TypographyProps; ref: HTMLDivElement; stylesNames: TypographyStylesNames; }>; export declare const Typography: import("../..").MantineComponent<{ props: TypographyProps; ref: HTMLDivElement; stylesNames: TypographyStylesNames; }>; export declare namespace Typography { type Props = TypographyProps; type StylesNames = TypographyStylesNames; type Factory = TypographyFactory; }