import * as React from 'react'; import { PopoverProps as PopoverPropsType, TextFieldProps } from '@material-ui/core'; import { WrapperProps } from './Wrapper'; export interface InlineWrapperProps extends WrapperProps { /** Popover props passed to material-ui Popover (with variant="inline") */ PopoverProps?: Partial; } export declare const InlineWrapper: React.FC;