import { default as React } from 'react';
import { FormFieldStyles } from '../../../../theme';
export interface CVVProps {
    onChange?: (value: string, isValid: boolean) => void;
    minLength?: number;
    maxLength?: number;
    isDefaultValue?: boolean;
    value?: string;
    label?: string;
    placeholder?: string;
    id?: string;
    onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
    onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
    helperText?: string;
    disabled?: boolean;
    styles?: FormFieldStyles;
}
declare const CVV: React.FC<CVVProps>;
export default CVV;
//# sourceMappingURL=index.d.ts.map