UNPKG

ai-native-form

Version:

AI-powered React form assistant with GPT-4, speech input, and schema auto-generation.

10 lines (9 loc) 240 B
import React from 'react'; export interface FillButtonProps { onClick: () => void; disabled?: boolean; loading?: boolean; label?: string; className?: string; } export declare const FillButton: React.FC<FillButtonProps>;