import React from "react"; import './Form.css'; interface FormProps { title?: string; children?: JSX.Element | JSX.Element[]; styles?: {}; action?: () => void; } declare const Form: React.FC; export default Form;