1 | import * as React from 'react';
|
2 | import { IUtils } from '@date-io/core/IUtils';
|
3 | import { MaterialUiPickersDate } from '../typings/date';
|
4 | export interface WithUtilsProps {
|
5 | utils: IUtils<MaterialUiPickersDate>;
|
6 | }
|
7 | export declare const withUtils: () => <P extends WithUtilsProps>(Component: React.ComponentType<P>) => React.SFC<Pick<P, Exclude<keyof P, "utils">>>;
|