UNPKG

@public-ui/components

Version:

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

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