import { FocusableElement } from 'tabbable'; type Container = Element | FocusableElement | null; declare const firstTabbable: (container?: Container) => FocusableElement | undefined; export default firstTabbable;