You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
539 B

/// <reference types="react" />
import { DateBodyPassProps, DateRender } from './DateBody';
import { PanelSharedProps } from '../../interface';
import { KeyboardConfig } from '../../utils/uiUtil';
export interface DatePanelProps<DateType> extends PanelSharedProps<DateType>, DateBodyPassProps<DateType> {
active?: boolean;
dateRender?: DateRender<DateType>;
panelName?: string;
keyboardConfig?: KeyboardConfig;
}
declare function DatePanel<DateType>(props: DatePanelProps<DateType>): JSX.Element;
export default DatePanel;