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