linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
12 lines (11 loc) β’ 527 B
TypeScript
import * as React from 'react';
import type { AbstractTooltipProps } from '../tooltip';
import type { RenderFunction } from '../_util/getRenderPropValue';
export interface PopoverProps extends AbstractTooltipProps {
title?: React.ReactNode | RenderFunction;
content?: React.ReactNode | RenderFunction;
/** @internal Used For Popconfirm. Safe to remove. */
_overlay?: React.ReactNode;
}
declare const Popover: React.ForwardRefExoticComponent<PopoverProps & React.RefAttributes<unknown>>;
export default Popover;