import { Offset } from './types'; export declare function attachContainer(containerId: string): ShadowRoot; export declare function parseUnanchoredPosition(position: { offset?: Offset; placement: string; }): { top: string; left: string; right?: undefined; bottom?: undefined; } | { top: string; right: string; left?: undefined; bottom?: undefined; } | { bottom: string; left: string; top?: undefined; right?: undefined; } | { bottom: string; right: string; top?: undefined; left?: undefined; }; //# sourceMappingURL=utils.d.ts.map