import detectOverflow from './utils/detectOverflow'; import type { Instance, Modifier, OptionsGeneric, VirtualElement } from './types/types'; interface PopperGeneratorArgs { defaultModifiers?: Array>; defaultOptions?: Partial>; } export declare function popperGenerator(generatorOptions?: PopperGeneratorArgs): >>(reference: Element | VirtualElement, popper: HTMLElement, options?: Partial>) => Instance; export declare const createPopper: >>(reference: Element | VirtualElement, popper: HTMLElement, options?: Partial>) => Instance; export { detectOverflow };