/** * The source of truth for handling accessbility errors. * The logic within may change at some point in the future. * * @param message */ export declare function handleAccessbilityError(message: string): void; export declare function isAriaDisabled(target: HTMLElement): boolean; /** * Generates a unique string in the UUID format. * * @example * const internalId = useMemo(() => props.id || genId(), [props.id]); * * @returns uuid */ export declare const genId: () => string;