import { AuthenticationAction } from "../../enum";
export declare class OtpSmsCreatedEvent {
    phoneNumber: string;
    otpValue: string;
    authenticationAction: AuthenticationAction;
    locale?: string;
    appData?: object;
}
