export interface PopoverTargetProps extends React.ComponentProps<"div"> { /** Target element */ children: React.ReactNode; /** Key of the prop that should be used to access element ref */ refProp?: string; /** Popup accessible type * @default "dialog" */ popupType?: string; [key: string]: any; } export declare function PopoverTarget(props: PopoverTargetProps): import("react").ReactElement>;