UNPKG

react-flexible-datepicker

Version:
13 lines (12 loc) 367 B
import React, { ReactNode } from 'react'; import { ButtonComponent } from './PopoverButton'; import { PanelComponent } from './PopoverPanel'; interface IPopoverProps { children: ReactNode; } type PopoverComponent = React.FC<IPopoverProps> & { Button: ButtonComponent; Panel: PanelComponent; }; declare const Popover: PopoverComponent; export { Popover };