antd
Version:
An enterprise-class UI design language and React components implementation
8 lines (7 loc) • 440 B
TypeScript
import * as React from 'react';
import type { PopoverProps } from '.';
export declare const getOverlay: (prefixCls: string, title?: PopoverProps['title'], content?: PopoverProps['content']) => JSX.Element | undefined;
export interface PurePanelProps extends Omit<PopoverProps, 'children'> {
children?: React.ReactNode;
}
export default function PurePanel(props: any): React.ReactElement<any, string | React.JSXElementConstructor<any>>;