index.d.ts 287 Bytes Raw Blame History Permalink 1 2 3 4 5 6 /// <reference types="react" /> import { PanelSharedProps } from '../../interface'; export interface QuarterPanelProps<DateType> extends PanelSharedProps<DateType> { } declare function QuarterPanel<DateType>(props: QuarterPanelProps<DateType>): JSX.Element; export default QuarterPanel;