/// export interface ResetPasswordFormInterface { initialData: { password: string; newPassword: string; }; handleAction: (type: any, data: any) => void; schema: any; } declare const ResetPasswordForm: ({ handleAction, initialData, schema, }: ResetPasswordFormInterface) => JSX.Element; export default ResetPasswordForm;