import { type ComponentType } from 'react';
import { type InputProps } from '../Input/index.js';
export interface CaptchaInputProps extends Omit<InputProps, 'type'> {
    Component?: ComponentType<InputProps>;
    origin: string;
    captchaId: string;
    timestamp?: number;
    onTimestampChange: (timestamp: number) => void;
}
export declare const CaptchaInput: ({ Component, origin, captchaId, timestamp, onTimestampChange, ...props }: CaptchaInputProps) => import("react/jsx-runtime").JSX.Element;
