interface IChangePasswordForm { reset?: () => any; submitting?: boolean; pristine?: boolean; handleSubmit?: (onChangePassword: (v: { password_old: string; password: string; password_2: string; }) => any) => any; error?: string; is_mine: boolean; user: { id: number; }; classes?: { card: string; error: string; }; changePasswordUser: (id: number, password_old: string, password: string, password_2: string, options: {}) => any; changePasswordOtherUser: (id: number, password: string, password_2: string, options: {}) => any; } declare let ChangePasswordForm: (props: IChangePasswordForm) => JSX.Element; export { ChangePasswordForm };