@amaui/ui-react
Version:
UI for React
9 lines (8 loc) • 483 B
TypeScript
import React from 'react';
import { IBaseElement } from '../types';
export declare const matches: (value: Element) => any;
export declare const queryMatchFocusable = "button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex=\"-1\"]):not([disabled]), details:not([disabled]), summary:not(:disabled)";
export interface IFocus extends IBaseElement {
}
declare const Focus: React.FC<IFocus>;
export default Focus;