8 lines
290 B
TypeScript
8 lines
290 B
TypeScript
import * as React from 'react';
|
|
import type { TooltipProps } from '.';
|
|
export interface PurePanelProps extends Omit<TooltipProps, 'children'> {
|
|
}
|
|
/** @private Internal Component. Do not use in your production. */
|
|
declare const PurePanel: React.FC<PurePanelProps>;
|
|
export default PurePanel;
|