import React from 'react'; interface PopupApplicationInformationProps { visible?: boolean; textKey: string; onRefresh: () => void; } declare const PopupApplicationInformation: ({ visible, textKey, onRefresh, }: PopupApplicationInformationProps) => React.JSX.Element; export default PopupApplicationInformation;