index.d.ts 355 B

12345678
  1. import type { PanelSharedProps } from '../../interface';
  2. export declare type QuarterPanelProps<DateType> = {} & PanelSharedProps<DateType>;
  3. declare function QuarterPanel<DateType>(_props: QuarterPanelProps<DateType>): JSX.Element;
  4. declare namespace QuarterPanel {
  5. var displayName: string;
  6. var inheritAttrs: boolean;
  7. }
  8. export default QuarterPanel;