UNPKG

@material-ui/pickers

Version:

React components, that implements material design pickers for material-ui v4

8 lines (7 loc) 364 B
import * as React from 'react'; import { IUtils } from '@date-io/core/IUtils'; import { MaterialUiPickersDate } from '../typings/date'; export interface WithUtilsProps { utils: IUtils<MaterialUiPickersDate>; } export declare const withUtils: () => <P extends WithUtilsProps>(Component: React.ComponentType<P>) => React.SFC<Pick<P, Exclude<keyof P, "utils">>>;