import React, { FC } from 'react';
import { PopperPosition } from '../../types/global';
interface Props {
position?: PopperPosition;
children: React.ReactChild;
anchor?: HTMLElement | null;
handleClose?: () => void;
}
export declare const SimplePopper: FC<Props>;
export {};