/** * * HeroBase represents people using links in the page with css buttons look. * * * @module `herobase` */ import { VNode } from 'vue' import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers' /** * Defines valid properties in HeroBase component. */ export interface HeroBaseProps { id?: string | undefined /** * Defines the id of the section * @defaultValue '' */ bannerNews?: object overline?: string /** * @defaultValue: false */ isReverse?: boolean /** * @defaultValue: h1 */ titleTag?: string title: string description?: string descriptionRawHtml?: string justify?: string /** * @defaultValue: false */ isCentralized?: boolean /** * @defaultValue: false */ isDisplay?: boolean /** * options: ['right'], * @defaultValue: left */ position?: string } /** * Defines valid slots in HeroBase component. */ export interface HeroBaseSlots { /** * Content can easily be customized with the default slot instead of using the built-in modes. */ default(): VNode[] } /** * Defines valid emits in HeroBase component. */ export interface HeroBaseEmits { /** * Triggered when an error occurs */ error(event: Event): void } /** * @group Component */ declare class HeroBase extends ClassComponent {} declare module 'vue' { export interface GlobalComponents { HeroBase: GlobalComponentConstructor } } export default HeroBase