Gazebo_simulation-Frontend/node_modules/react-bootstrap/esm/Popover.d.ts
2020-12-21 10:29:31 -05:00

23 lines
562 B
TypeScript

import * as React from 'react';
import { Placement } from './Overlay';
import PopoverContent from './PopoverContent';
import PopoverTitle from './PopoverTitle';
import { BsPrefixComponent } from './helpers';
export interface PopoverProps {
id: string | number;
placement?: Placement;
title?: React.ReactNode;
arrowProps?: { ref: any; style: object };
content?: boolean;
}
declare class Popover extends BsPrefixComponent<'div', PopoverProps> {
static Title: typeof PopoverTitle;
static Content: typeof PopoverContent;
}
export default Popover;