You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
764 B
19 lines
764 B
import * as React from 'react';
|
|
import { OverlayArrowProps } from '@restart/ui/Overlay';
|
|
import { Placement, PopperRef } from './types';
|
|
import { BsPrefixProps } from './helpers';
|
|
export interface PopoverProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixProps {
|
|
placement?: Placement;
|
|
title?: string;
|
|
arrowProps?: Partial<OverlayArrowProps>;
|
|
body?: boolean;
|
|
popper?: PopperRef;
|
|
show?: boolean;
|
|
}
|
|
declare const _default: React.ForwardRefExoticComponent<PopoverProps & React.RefAttributes<HTMLDivElement>> & {
|
|
Header: import("./helpers").BsPrefixRefForwardingComponent<"div", unknown>;
|
|
Body: import("./helpers").BsPrefixRefForwardingComponent<"div", unknown>;
|
|
POPPER_OFFSET: readonly [0, 8];
|
|
};
|
|
export default _default;
|