import React from 'react'; export type PositionStrategy = 'absolute' | 'fixed'; export interface PopperContainerProps extends React.HTMLAttributes { readonly zIndex?: number; readonly positionStrategy?: PositionStrategy; } declare const _default: React.ForwardRefExoticComponent>; export default _default;