type FormInputViewProps = { title: string; description: string; inputParams: any[]; onSubmit: (formData: object) => void; parentBackgroundColor?: string; backgroundColor?: string; textColor?: string; sendButtonColor?: string; fontSize?: number; }; export declare const FormInputView: (props: FormInputViewProps) => import("solid-js").JSX.Element; export {};