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

8 lines
341 B
TypeScript

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