import { Placement } from '@popperjs/core'; import React, { FC } from 'react'; export interface RepositionProps { /** Position of the element relative to the anchor. */ placement?: Placement; children?: React.ReactNode; } export declare const Reposition: FC;