import type { ElementProps, FloatingContext } from "@floating-ui/react"; export interface UseFocusOutProps { /** * Whether the hook is enabled * @default true */ enabled?: boolean; } export declare function useFocusOut(context: FloatingContext, props: UseFocusOutProps): ElementProps;