import { default as Title } from './title';
import { default as Text } from './text';
import { default as Blockquote } from './blockquote';
import { default as OL } from './ol';
import { default as UL } from './ul';
import { H1, H2, H3, H4, H5, H6 } from './h';
import { default as P } from './p';
import { default as Strong } from './strong';
import { ComponentPublicInstance } from 'vue';
export { Title, Text, Blockquote, OL, UL, H1, H2, H3, H4, H5, H6, P, Strong };
export { titleProps, textProps, blockquoteProps, olProps, ulProps, h1Props, h2Props, h3Props, h4Props, h5Props, h6Props, pProps, strongProps } from './props';
export type TitleExposed = ComponentPublicInstance & InstanceType<typeof Title>;
export type TextExposed = ComponentPublicInstance & InstanceType<typeof Text>;
export type BlockquoteExposed = ComponentPublicInstance & InstanceType<typeof Blockquote>;
export type OLExposed = ComponentPublicInstance & InstanceType<typeof OL>;
export type ULExposed = ComponentPublicInstance & InstanceType<typeof UL>;
export type H1Exposed = ComponentPublicInstance & InstanceType<typeof H1>;
export type H2Exposed = ComponentPublicInstance & InstanceType<typeof H2>;
export type H3Exposed = ComponentPublicInstance & InstanceType<typeof H3>;
export type H4Exposed = ComponentPublicInstance & InstanceType<typeof H4>;
export type H5Exposed = ComponentPublicInstance & InstanceType<typeof H5>;
export type H6Exposed = ComponentPublicInstance & InstanceType<typeof H6>;
export type PExposed = ComponentPublicInstance & InstanceType<typeof P>;
export type StrongExposed = ComponentPublicInstance & InstanceType<typeof Strong>;
export type { TextProps, TextCProps, PProps, PCProps, StrongProps, StrongCProps, TitleProps, TitleCProps, H1Props, H2Props, H3Props, H4Props, H5Props, H6Props, H1CProps, H2CProps, H3CProps, H4CProps, H5CProps, H6CProps, BlockquoteProps, BlockquoteCProps, OLProps, OLCProps, ULProps, ULCProps } from './props';
export type { TypographyType, TitleLevel } from './symbol';
