UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

16 lines (15 loc) 620 B
import type { HrefPropType, LabelPropType, QuoteAPI, QuotePropType, QuoteStates, QuoteVariantPropType } from '../../schema'; import type { JSX } from '../../stencil-public-runtime'; export declare class KolQuote implements QuoteAPI { _label?: string; _href: HrefPropType; _quote: string; _variant?: QuoteVariantPropType; state: QuoteStates; validateLabel(value?: LabelPropType): void; validateHref(value?: HrefPropType): void; validateQuote(value?: QuotePropType): void; validateVariant(value?: QuoteVariantPropType): void; componentWillLoad(): void; render(): JSX.Element; }