import { NOOP } from '@base-ui/utils/empty';
import type { FocusableElement } from "./tabbable.js";
interface Options {
  preventScroll?: boolean | undefined;
  cancelPrevious?: boolean | undefined;
  sync?: boolean | undefined;
}
export declare function enqueueFocus(el: FocusableElement | null, options?: Options): typeof NOOP;
export {};