import * as React from 'react';
import { PopupControlledProps } from './PopupControlled';
import type { AnchorPointComputeSpec } from '../../utils/popup/types';
export interface PopupProps extends Omit<PopupControlledProps, 'open'> {
    anchor?: AnchorPointComputeSpec;
}
export declare const Popup: React.FC<PopupProps>;
