/** * Utility functions for PIN storage management */ /** * Get the stored PIN for training/authentication purposes * This will prompt for biometric authentication */ export declare const getStoredPinForTraining: () => Promise; /** * Check if user has a PIN stored securely */ export declare const hasStoredPin: () => Promise; /** * Remove stored PIN (for logout/reset purposes) */ export declare const clearStoredPin: () => Promise; /** * Get PIN for passing to training component * This function can be called from the onboarding flow */ export declare const getPinForTraining: (tempPin?: string) => Promise; export declare const setTemporaryPin: (pin: string) => void; export declare const getTemporaryPin: () => string | null; export declare const clearTemporaryPin: () => void; //# sourceMappingURL=pinStorageUtils.d.ts.map