import { ReactNode, PropsWithChildren } from 'react';
import { PopoverProps as PopoverProps$1, PopoverContentProps } from '@radix-ui/react-popover';

interface PopoverProps extends PopoverProps$1 {
    content: ReactNode;
    contentProps?: PopoverContentProps;
}
declare const Popover: React.FC<PropsWithChildren<PopoverProps>>;

export { Popover, type PopoverProps };
