interface PropTypes { type: ['phone', 'email']; isReset: boolean; onBeforeSubmit: () => {}; onSuccess: () => {}; onFailed: () => {}; } declare const SettingPwdModal: { (props: PropTypes): JSX.Element; defaultProps: { type: string; isReset: boolean; onBeforeSubmit: () => boolean; onSuccess: null; onFailed: null; }; }; export default SettingPwdModal; export declare const SettingPwdContent: (props: any) => JSX.Element;