UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

15 lines (14 loc) 667 B
import { BoxProps, ElementProps, Factory, StylesApiProps } from '../../core'; export type TypographyStylesProviderStylesNames = 'root'; export interface TypographyStylesProviderProps extends BoxProps, StylesApiProps<TypographyStylesProviderFactory>, ElementProps<'div'> { } export type TypographyStylesProviderFactory = Factory<{ props: TypographyStylesProviderProps; ref: HTMLDivElement; stylesNames: TypographyStylesProviderStylesNames; }>; export declare const TypographyStylesProvider: import("../../core").MantineComponent<{ props: TypographyStylesProviderProps; ref: HTMLDivElement; stylesNames: TypographyStylesProviderStylesNames; }>;