import type { TFocusableFilter } from './types'; /** * Returns the first focusable element within the container. */ export declare function getFirstFocusable({ container, filter, }: { container: HTMLElement; filter?: TFocusableFilter; }): HTMLElement | null;