/** * Searches for the first or last element within the given parent or within the document that can receive focus. * @param parent The parent element to search from * @param last If true find the last focusable element within the parent */ export declare const getFocusableElement: (parent?: HTMLElement | undefined, last?: boolean) => Element | null; export default getFocusableElement;