import type { IValidateForgetPasswordData, IConfirmForgetPasswordData, ICheckForgetPasswordData } from "../../types";
import type { ForgetSecurityData } from "../../types";
declare const fillCheckForgetPasswordData: (data: ICheckForgetPasswordData) => ForgetSecurityData;
declare const fillValidateForgetPasswordData: (data: IValidateForgetPasswordData) => ForgetSecurityData;
declare const fillConfirmForgetPasswordData: (data: IConfirmForgetPasswordData) => ForgetSecurityData;
export { fillValidateForgetPasswordData, fillConfirmForgetPasswordData, fillCheckForgetPasswordData, };
