import React from 'react'; export interface PinInputProps { onSubmit: (pin: string) => void; minLength?: number; requireSpecialChar?: boolean; requireNumber?: boolean; onBack?: () => void; enableBiometricStorage?: boolean; onBackgroundTrainingStart?: () => Promise; showBackgroundProgress?: boolean; backgroundProgressText?: string; } export declare const PinInput: React.FC; //# sourceMappingURL=PinInput.d.ts.map