import PropTypes from 'prop-types'; import { KeyboardDatePickerProps } from '@material-ui/pickers'; interface DatePickerProps extends KeyboardDatePickerProps { className: string; } declare const DatePicker: { ({ className, PopoverProps, ...otherProps }: DatePickerProps): JSX.Element; propTypes: { PopoverProps: PropTypes.Requireable; }>>; className: PropTypes.Requireable; }; defaultProps: { PopoverProps: {}; className: string; }; }; export default DatePicker; //# sourceMappingURL=index.d.ts.map