import React from 'react'; import { IButton } from '../Button/Button'; import { AriaButtonProps } from '@react-types/button'; declare type CustomComponentProps = { reactAriaProps: { button: React.ButtonHTMLAttributes; trigger: AriaButtonProps; }; ref: React.Ref; }; declare type PopoverProps = { children?: JSX.Element | string; buttonProps?: IButton; CustomComponent?: React.ComponentType; shouldToggle?: boolean; buttonText?: string; buttonCallback?: () => void; iconTrigger?: boolean; buttonTrigger?: boolean; customTrigger?: boolean; }; export declare function Popover(props: PopoverProps): JSX.Element; export {}; //# sourceMappingURL=Popover.d.ts.map