/** * Request interface for SMS code generation */ export interface IGenerateCodeRequest { phoneNumber: string; } /** * Request interface for SMS code verification */ export interface IVerifyCodeRequest { code: string; }