import React from 'react'; interface IValidateNewPassword { pristine?: boolean; submitting?: boolean; reset?: () => any; handleSubmit?: (onSubmit: (v: { password: string; password_2: string; }) => any) => any; children?: React.ReactNode; error?: string; redirect_link?: string; match?: { params: { id: number; key_validations: string; }; }; history?: { push: (url: string) => any; }; } declare let ValidateNewPassword: React.MemoExoticComponent<(props: IValidateNewPassword) => JSX.Element>; export { ValidateNewPassword };