UNPKG

@public-ui/components

Version:

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

14 lines (13 loc) 532 B
import type { JSX } from '../../stencil-public-runtime'; import type { AlertProps, AlertStates, AlertTypePropType, AlertVariantPropType, HeadingLevel, KoliBriAlertEventCallbacks, LabelPropType } from '../../schema'; export declare class KolAlert implements AlertProps { render(): JSX.Element; _alert?: boolean; _hasCloser?: boolean; _label?: LabelPropType; _level?: HeadingLevel; _on?: KoliBriAlertEventCallbacks; _type?: AlertTypePropType; _variant?: AlertVariantPropType; state: AlertStates; }