import React from 'react'; export interface MyVerificationCodeProps { defaultValue?: any; value?: string; titleShow?: boolean; title?: string; placeholderText?: string; titlePosition?: string; displayStyle?: string; imageURL?: string; countdownTime?: number; style?: any; onChange?: any; onClick?: any; onValueRelease?: any; fieldName?: any; startCountdown?: any; resetCountdown?: any; showWrapperContainer: boolean; wrapperContainer: any; wrapperCol?: any; selfSpan?: any; colSpan?: any; hidden?: any; visible?: boolean; regexp?: any; rules?: any[]; name?: string; required?: any; message?: any; compId?: any; colon?: boolean; digit?: number; isFormChild?: boolean; tipSize?: string; tipWidth?: string; tipHeight?: string; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; titleTip?: any; label?: any; getEngineApis?: any; } declare const VerificationCode: React.FC; export default VerificationCode;