import React from 'react'; import { QuarterPickerProps, QuarterPickerState } from '../interface'; import './index.less'; declare class QuarterPicker extends React.Component { static defaultProps: { quarters: string[]; formatQuarters: string[]; year: null; quarter: null; yearSuffix: string; onChange: () => void; disableFuture: boolean; className: string; placeholder: string; startYear: null; }; constructor(props: any); showPanel: () => void; changeYear: (type: any) => void; getQuarterArray: (select: any) => any[]; /** * 选择季度 */ select: (quarter: any) => void; getDefaultDate: () => JSX.Element; /** * 隐藏选择框 */ hideSelect: () => void; /** * 将被选择的时间传递给发起者 */ getDate: () => void; render(): JSX.Element; } export default QuarterPicker;