amis-rpc-design/node_modules/rc-picker/es/panels/MonthPanel/index.d.ts
2023-10-07 19:42:30 +08:00

8 lines
333 B
TypeScript

import * as React from 'react';
import type { CellRender, PanelSharedProps } from '../../interface';
export type MonthPanelProps<DateType> = {
cellRender?: CellRender<DateType>;
} & PanelSharedProps<DateType>;
declare function MonthPanel<DateType>(props: MonthPanelProps<DateType>): React.JSX.Element;
export default MonthPanel;