import React from 'react'; import PropTypes from 'prop-types'; declare function Notification({ text, onClose, type, action, secondaryAction }: { text: any; onClose: any; type: any; action: any; secondaryAction: any; }): React.JSX.Element; declare namespace Notification { var propTypes: { text: PropTypes.Validator; onClose: PropTypes.Validator<(...args: any[]) => any>; type: PropTypes.Requireable; action: PropTypes.Requireable; disabled: PropTypes.Requireable; callback: PropTypes.Requireable<(...args: any[]) => any>; }>>; secondaryAction: PropTypes.Requireable; disabled: PropTypes.Requireable; callback: PropTypes.Requireable<(...args: any[]) => any>; }>>; }; var defaultProps: { type: string; action: undefined; secondaryAction: undefined; }; } export default Notification; //# sourceMappingURL=Notification.d.ts.map