import React from 'react'; interface UnifyPlacementProps { autoAdjust?: boolean; children: any; container?: string | any; placement?: 'top' | 'right' | 'bottom' | 'left'; spacing?: number; target: object | string | undefined; } declare const UnifyPlacement: React.ForwardRefExoticComponent>; export default UnifyPlacement;