@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
10 lines (9 loc) • 358 B
TypeScript
import type { JSX } from '../../stencil-public-runtime';
import type { CardProps, HeadingLevel, KoliBriCardEventCallbacks, LabelPropType } from '../../schema';
export declare class KolCard implements CardProps {
render(): JSX.Element;
_on?: KoliBriCardEventCallbacks;
_hasCloser?: boolean;
_label: LabelPropType;
_level?: HeadingLevel;
}