import type { ReactNode } from 'react'; import type { PopoverProps as CorePopoverProps } from '@pega/cosmos-react-core'; type PopoverProps = { target: NonNullable; loading?: boolean; heading: string; children?: ReactNode; displayHeading?: boolean; onCancel: () => void; onSubmit: () => void; }; declare const Popover: ({ loading, heading, target, children, displayHeading, onCancel, onSubmit }: PopoverProps) => import("react/jsx-runtime").JSX.Element; export default Popover; //# sourceMappingURL=Popover.d.ts.map