import React from "react"; import { MetaProps } from "src/types"; type CaptchaPropTypes = { readonly id: string; readonly tabIndex?: string; readonly field?: any; readonly label?: string; readonly autoFocus?: boolean; readonly left?: string; readonly right?: string; readonly meta?: MetaProps; }; export declare const OldCaptchaBox: (props: CaptchaPropTypes) => React.JSX.Element | null; export {};