import React, { RefObject } from "react"; import { Placement } from "@popperjs/core"; import { NotificationFeedProps } from "../NotificationFeed"; import "./styles.css"; import { Feed, FeedStoreState } from "@knocklabs/client"; declare type OnOpenOptions = { store: FeedStoreState; feedClient: Feed; }; export interface NotificationFeedPopoverProps extends NotificationFeedProps { isVisible: boolean; onOpen?: (arg: OnOpenOptions) => void; onClose: (e: Event) => void; buttonRef: RefObject; closeOnClickOutside?: boolean; placement?: Placement; } export declare const NotificationFeedPopover: React.FC; export {}; //# sourceMappingURL=NotificationFeedPopover.d.ts.map