UNPKG

@public-ui/components

Version:

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

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