@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
7 lines (6 loc) • 378 B
TypeScript
import type { HostInternals } from '../../utils/aria-labelledby';
export type AriaLabelledbyPropType = string;
export type PropAriaLabelledby = {
ariaLabelledby: AriaLabelledbyPropType;
};
export declare const validateAriaLabelledby: (component: unknown, host: HTMLElement | undefined, internals: HostInternals | undefined, value?: AriaLabelledbyPropType) => HTMLElement[];