import React from 'react'; import type { CSSProperties } from 'react'; export interface PinInputGridProps { pin: Array; setPin: (pin: Array) => void; onPinChanged: (pinEntry: number | undefined, index: number) => void; pinLength: number; validationResult: boolean | undefined; isValidating: boolean; size: 'small' | 'large'; style?: CSSProperties; inputProps?: CSSProperties; variant?: 'outlined' | 'standard'; } declare const PinInput: ({ pinLength, pin, setPin, onPinChanged, validationResult, isValidating, size, style: styleProps, inputProps, variant, ...otherProps }: PinInputGridProps) => React.JSX.Element; export default PinInput;