7 lines
319 B
TypeScript
Executable File
7 lines
319 B
TypeScript
Executable File
import * as React from 'react';
|
|
import type { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface PopoverBodyProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
|
}
|
|
declare const PopoverBody: BsPrefixRefForwardingComponent<'div', PopoverBodyProps>;
|
|
export default PopoverBody;
|