import { BoxProps } from 'grommet'; import * as React from 'react'; export interface PopupProps { kind?: string; } export interface PopupExtendedProps extends PopupProps, BoxProps {} declare const Popup: React.FC; export { Popup };