index.d.ts 324 B

1234
  1. import * as React from 'react';
  2. import type { SharedPanelProps, SharedTimeProps } from '../../../interface';
  3. export type TimePanelBodyProps<DateType extends object = any> = SharedPanelProps<DateType>;
  4. export default function TimePanelBody<DateType extends object = any>(props: SharedTimeProps<DateType>): React.JSX.Element;