import React from 'react'; export interface PopoverTargetProps { /** Target element */ children: React.ReactNode; /** Key of the prop that should be used to get element ref */ refProp?: string; /** Popup accessible type, 'dialog' by default */ popupType?: string; /** Determines whether component should override default id of target element, defaults to true */ shouldOverrideDefaultTargetId?: boolean; } export declare const PopoverTarget: React.ForwardRefExoticComponent>; //# sourceMappingURL=PopoverTarget.d.ts.map