/** * TouchID implementation placeholder * This will be implemented based on platform-specific requirements */ export interface TouchIDOptions { prompt?: string; fallbackLabel?: string; } export declare function isTouchIDAvailable(): Promise; export declare function authenticateWithTouchID(options?: TouchIDOptions): Promise;