import * as React from 'react'; /** * Baseui overrides anchor element's ref. This component clones and stores anchor/child element's ref. * TODO: should be removed once https://github.com/uber/baseweb/issues/4032 is addressed */ export declare const PopoverRefHandler: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const TargetElementProxy: React.ForwardRefExoticComponent<{ targetElement?: HTMLElement | null | undefined; } & React.RefAttributes>; declare type PopoverChildEnhancerProps = { children?: React.ReactNode; targetElement?: HTMLElement | null | undefined; }; export declare const PopoverChildEnhancer: React.ForwardRefExoticComponent>; export {};