import type { AlignPropType } from '../schema'; type Arguments = { floatingElement: HTMLElement; referenceElement: Element; arrowElement?: HTMLElement; align?: AlignPropType; }; export declare const alignFloatingElements: ({ floatingElement, referenceElement, arrowElement, align }: Arguments) => Promise; export {};