UNPKG

baseui

Version:

A React Component library implementing the Base design language

9 lines (8 loc) 434 B
import * as React from 'react'; import type { StatefulDatepickerProps, DatepickerProps } from './types'; type Props<T> = StatefulDatepickerProps<DatepickerProps<T>, T> & Omit<DatepickerProps<T>, keyof StatefulDatepickerProps<DatepickerProps<T>, T>>; declare class StatefulComponent<T = Date> extends React.Component<Props<T>> { static defaultProps: Props<any>; render(): React.JSX.Element; } export default StatefulComponent;