import { AbhaNextStep } from "./abha.enums"; export declare class AadhaarOtpRequestDto { aadhaar: string; } export declare class VerifyAadhaarOtpBodyDto { otp: string; txnId: string; mobile: string; } export declare class UpdateMobileOtpRequestDto { mobile: string; txnId: string; } export declare class VerifyUpdateMobileOtpBodyDto { otp: string; txnId: string; } export declare class AbhaAddressSuggestionsRequest { txnId: string; } export declare class CreateAbhaAddressRequestDto { abhaAddress: string; txnId: string; } export declare class AbhaFlowResponse { static success(message: string, response: any, nextStep: AbhaNextStep | null, nextStepHint: string | null): { success: boolean; message: string; response: any; nextStep: AbhaNextStep | null; nextStepHint: string | null; }; static error(message: string): { success: boolean; message: string; response: null; nextStep: null; nextStepHint: null; }; }