import { default as A } from './src/a'; import { H1, H2, H3, H4, H5, H6 } from './src/headlines'; import { default as P } from './src/p'; import { default as Text } from './src/text'; declare const aWithIntall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; declare const h1WithIntall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; declare const h2WithIntall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; declare const h3WithIntall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; declare const h4WithIntall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; declare const h5WithIntall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; declare const h6WithIntall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; declare const pWithIntall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; declare const textWithIntall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; export * from './src/a'; export * from './src/headlines'; export * from './src/p'; export * from './src/text'; export { aWithIntall, A, h1WithIntall, H1, h2WithIntall, H2, h3WithIntall, H3, h4WithIntall, H4, h5WithIntall, H5, h6WithIntall, H6, pWithIntall, P, textWithIntall, Text }; declare module 'vue' { interface GlobalComponents { YyA: typeof A; YyH1: typeof H1; YyH2: typeof H2; YyH3: typeof H3; YyH4: typeof H4; YyH5: typeof H5; YyH6: typeof H6; YyP: typeof P; YyText: typeof Text; } }