baseui
Version:
A React Component library implementing the Base design language
11 lines (10 loc) • 579 B
TypeScript
import type * as React from 'react';
export declare function teardown(doc: any): void;
export declare function isFocusVisible(event: any): any;
/**
* Should be called if a blur event is fired on a focus-visible element
*/
export declare function handleBlurVisible(): void;
export declare function initFocusVisible(node: any): void;
export declare const forkFocus: (rootProps: any, handler: (e: React.FocusEvent) => void) => (e: React.FocusEvent) => void;
export declare const forkBlur: (rootProps: any, handler: (e: React.FocusEvent) => void) => (e: React.FocusEvent) => void;