import React from 'react'; import Confirm from './Confirm'; import { PopoverProps } from './type'; export interface PopoverComponent extends React.ComponentClass { Confirm: typeof Confirm; } declare const ComputedPopover: PopoverComponent; export default ComputedPopover;