tdesign-react
Version:
TDesign Component for React
8 lines (7 loc) • 359 B
TypeScript
import React from 'react';
import { StyledProps } from '../common';
import { TdDatePickerPanelProps } from './type';
export interface DatePickerPanelProps extends TdDatePickerPanelProps, StyledProps {
}
declare const DatePickerPanel: React.ForwardRefExoticComponent<DatePickerPanelProps & React.RefAttributes<HTMLDivElement>>;
export default DatePickerPanel;