@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
10 lines (9 loc) • 444 B
TypeScript
import type { JSX } from '../../stencil-public-runtime';
import type { FocusableElement, LabelPropType, TreeProps } from '../../schema';
export declare class KolTree implements TreeProps, FocusableElement {
protected readonly host?: HTMLKolTreeElement;
protected readonly ctaRef: import("../../utils/element-interaction").CtaRef<HTMLKolTreeWcElement>;
_label: LabelPropType;
focus(): Promise<void>;
render(): JSX.Element;
}