import * as React from 'react'; export interface PanelWithButtonProps { buttonClick?: () => void; className?: string; bodyClassName?: string; button?: React.ReactElement; headerText: string; glyphicon?: string; infoLink?: string; infoLinkDisabled?: boolean; scrollable?: boolean; } export declare const PopupPanel: React.FunctionComponent>;