import React from 'react';
import { PopupProps } from './Props';
export default class Popup extends React.Component<PopupProps> {
    getStyle(): {
        [x: string]: string;
        transform: string;
    };
    render(): JSX.Element;
}
