@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 410 B
TypeScript
import type { LabelPropType, SymbolAPI, SymbolStates } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolSymbol implements SymbolAPI {
render(): JSX.Element;
_label: LabelPropType;
_symbol: string;
state: SymbolStates;
validateLabel(value?: LabelPropType): void;
validateSymbol(value?: string): void;
componentWillLoad(): void;
}