import type { FloatingRootContext, ElementProps } from '@floating-ui/react'; interface UseFocusExtendedProps { delay?: number; } /** * @ignore - internal hook. * Adds support for delay, since Floating UI's `useFocus` hook does not support it. */ export declare function useFocusExtended(context: FloatingRootContext, props?: UseFocusExtendedProps): ElementProps; export {};