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