exlement-react
Version:
React components for Exlement - a revolutionary web development framework that extends React with powerful, AI-ready custom components.
14 lines (11 loc) • 412 B
TypeScript
import React from 'react';
interface PageTXGeneratorProps {
model?: string;
task?: string;
options?: Record<string, any>;
onResult?: (result: any) => void;
onError?: (error: string) => void;
setProcessFunction?: (fn: (input: any, processOptions: Record<string, any>) => void) => void;
}
declare const PageTXGenerator: React.FC<PageTXGeneratorProps>;
export { PageTXGenerator };