///
import PropTypes from 'prop-types';
declare type Props = {
headerText: string;
bodyText: string;
primaryButtonText: string;
secondaryButtonText?: string;
primaryAction: () => void;
secondaryAction?: () => void;
isLoading: boolean;
};
declare const AlertPopup: {
({ headerText, bodyText, primaryButtonText, secondaryButtonText, primaryAction, secondaryAction, isLoading, }: Props): JSX.Element;
propTypes: {
headerText: PropTypes.Requireable;
bodyText: PropTypes.Requireable;
primaryButtonText: PropTypes.Requireable;
secondaryButtonText: PropTypes.Requireable;
primaryAction: PropTypes.Requireable<(...args: any[]) => any>;
secondaryAction: PropTypes.Requireable<(...args: any[]) => any>;
primaryActionProps: PropTypes.Requireable