@fluster.io/dev
Version:
17 lines (16 loc) • 1.4 kB
TypeScript
import { default as React, HTMLProps } from 'react';
import { WithInlineMdx } from '../../embeddable_components/types';
interface MdxTypographyProps extends WithInlineMdx {
className?: string;
mdx: string;
}
export declare function MdxH1({ mdx, className, InlineMdxContent, ...props }: MdxTypographyProps & HTMLProps<HTMLHeadingElement>): React.JSX.Element;
export declare function MdxH2({ mdx, className, InlineMdxContent, ...props }: MdxTypographyProps & HTMLProps<HTMLHeadingElement>): React.JSX.Element;
export declare function MdxH3({ mdx, className, InlineMdxContent, ...props }: MdxTypographyProps & HTMLProps<HTMLHeadingElement>): React.JSX.Element;
export declare function MdxH4({ mdx, className, InlineMdxContent, ...props }: MdxTypographyProps & HTMLProps<HTMLHeadingElement>): React.JSX.Element;
export declare function MdxP({ mdx, className, InlineMdxContent }: MdxTypographyProps): React.JSX.Element;
export declare function MdxBlockquote({ mdx, className, InlineMdxContent, }: MdxTypographyProps): React.JSX.Element;
export declare function MdxInlineCode({ mdx, className, InlineMdxContent, }: MdxTypographyProps): React.JSX.Element;
export declare function MdxLargeText({ mdx, className, InlineMdxContent, }: MdxTypographyProps): React.JSX.Element;
export declare function MdxSmallText({ mdx, className, InlineMdxContent, }: MdxTypographyProps): React.JSX.Element;
export {};