import { BlockProps, TypographyBaseEmits, TypographySlots } from "./interface.js"; import { SlotsType } from "vue"; //#region src/typography/Paragraph.d.ts type TypographyBaseEmitsProps = { [K in keyof TypographyBaseEmits as `on${Capitalize}`]?: TypographyBaseEmits[K]; }; interface ParagraphProps extends BlockProps, TypographyBaseEmitsProps {} declare const Paragraph: import("vue").DefineSetupFnComponent, ParagraphProps, import("vue").PublicProps>; //#endregion export { ParagraphProps, TypographyBaseEmitsProps, Paragraph as default };