import React from 'react'; interface OpenapiFormProps { inputPath: string; setInputPath: (path: string) => void; onSubmit: () => void; } /** * Form component for entering the OpenAPI spec file path */ export default function OpenapiForm({ inputPath, setInputPath, onSubmit, }: OpenapiFormProps): React.ReactElement; export {};