import { StyledBoxProps } from "@re-flex/styled/Box"; import { Fade } from "@re-flex/ui"; import * as React from "react"; import { PopperProps } from "../Popper"; export interface PopoverProps extends Partial { Transition?: T; TransitionProps?: React.ComponentPropsWithoutRef; onClose?: () => void; onClosed?: () => void; paperProps?: StyledBoxProps; } declare const Popover: React.FC; export default Popover;