export interface IPinCodeInputProps { pinLength?: number; onChange: (pinCode: string) => void; invalid: boolean; testId?: string; }