ph-material-pickers
Version:
React components, that implements material design pickers for material-ui v4
12 lines (11 loc) • 671 B
TypeScript
import * as React from 'react';
import { WrapperProps } from './Wrapper';
import { StaticWrapperProps } from './StaticWrapper';
import { InnerMobileWrapperProps } from './MobileWrapper';
import { InnerDesktopWrapperProps } from './DesktopWrapper';
import { ExportedPickerPopperProps } from '../_shared/PickersPopper';
export interface InnerDesktopTooltipWrapperProps extends ExportedPickerPopperProps {
}
export interface DesktopTooltipWrapperProps extends InnerDesktopTooltipWrapperProps, WrapperProps, Partial<InnerMobileWrapperProps & StaticWrapperProps & InnerDesktopWrapperProps> {
}
export declare const DesktopTooltipWrapper: React.FC<DesktopTooltipWrapperProps>;