@alauda/doom
Version:
Doctor Doom making docs.
11 lines (10 loc) • 504 B
TypeScript
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;