import { HeadingProps, ParagraphProps, TextProps, TextType, TypographyCopyableConfig, TypographyEllipsisConfig, TypographyParagraphTag, TypographyProps, TypographyTextTag } from "./types.js"; import { Heading } from "./heading.js"; import { Typography } from "./typography.js"; import { Paragraph } from "./paragraph.js"; import { Text } from "./text.js"; //#region src/typography/index.d.ts type ITypography = typeof Typography & { Heading: typeof Heading; Paragraph: typeof Paragraph; Text: typeof Text; }; declare const DefaultTypo: ITypography; //#endregion export { DefaultTypo }; //# sourceMappingURL=index.d.ts.map