export declare const FOCUS_SELECTOR: string; /** * @description focus가 가능한 Element인지 확인합니다. * @description tab 이동이 가능한지는 판단하지 않습니다. */ export declare function focusable(element: HTMLElement): boolean; /** * @description tab을 사용해 이동할 수 있는지 확인합니다. */ export declare function tabbable(element: HTMLElement): boolean; /** * @description 포커스가 가능한 모든 Element를 찾아서 배열로 반환합니다. */ export declare function findTabbableDescendants(element: HTMLElement): HTMLElement[]; /** * * @description 포커스가 가능한 첫 번째 Element를 찾습니다. * @description autoFocus 속성은 DOM에 기록되지 않기 때문에 data-autofocus로 처리해야 합니다. */ export declare function findFirstFocusableNode(element: HTMLElement): HTMLElement | null; //# sourceMappingURL=tabbable.d.ts.map