PurePanel.d.ts 290 B

1234567
  1. import * as React from 'react';
  2. import type { TooltipProps } from '.';
  3. export interface PurePanelProps extends Omit<TooltipProps, 'children'> {
  4. }
  5. /** @private Internal Component. Do not use in your production. */
  6. declare const PurePanel: React.FC<PurePanelProps>;
  7. export default PurePanel;