UNPKG

@material-ui/lab

Version:
14 lines (13 loc) 438 B
/// <reference types="react" /> import { DateInputProps } from '../PureDateInput'; export interface DateInputPropsLike extends Omit<DateInputProps<any, any>, 'renderInput' | 'validationError'> { renderInput: (...args: any) => JSX.Element; validationError?: any; } export interface PrivateWrapperProps { onAccept: () => void; onClear: () => void; onDismiss: () => void; onSetToday: () => void; open: boolean; }