import type { Middleware } from '../types'; import { Options as DetectOverflowOptions } from '../detectOverflow'; export interface Options { strategy: 'referenceHidden' | 'escaped'; } /** * Provides data to hide the floating element in applicable situations, such as * when it is not in the same clipping context as the reference element. * @see https://floating-ui.com/docs/hide */ export declare const hide: ({ strategy, ...detectOverflowOptions }?: Partial) => Middleware;