/** * Password Recovery Modal for @ollaid/native-sso * Flow: email → method-choice → OTP → new password → success * Design aligned with web SSO * * @version 2.7.9 */ export interface PasswordRecoveryModalProps { open: boolean; onOpenChange: (open: boolean) => void; onSuccess: () => void; saasApiUrl: string; iamApiUrl: string; } export declare function PasswordRecoveryModal({ open, onOpenChange, onSuccess, saasApiUrl, iamApiUrl }: PasswordRecoveryModalProps): import("react/jsx-runtime").JSX.Element; export default PasswordRecoveryModal;