import * as React from 'react'; import { PickersInputBaseProps } from '../PickersInputBase'; export interface PickersInputProps extends PickersInputBaseProps { disableUnderline?: boolean; } /** * @ignore - internal component. */ declare const PickersInput: React.ForwardRefExoticComponent & React.RefAttributes>; export { PickersInput };