import { FC } from 'react'; import * as Yup from 'yup'; export interface ChangePasswordFormValues { currentPassword: string; newPassword: string; confirmPassword: string; } export interface ChangePasswordFormProps { onSubmit: (values: ChangePasswordFormValues) => Promise<{ success?: boolean; error?: string; }>; titleText?: string; currentPasswordLabel?: string; newPasswordLabel?: string; confirmPasswordLabel?: string; submitButtonText?: string; submittingButtonText?: string; successMessage?: string; currentPasswordValidation?: Yup.StringSchema; newPasswordValidation?: Yup.StringSchema; confirmPasswordValidation?: Yup.StringSchema; } export declare const ChangePasswordForm: FC; export default ChangePasswordForm; //# sourceMappingURL=ChangePasswordForm.d.ts.map