import { Component } from 'react'; interface Props { workspace?: any; id?: string; back: () => void; backToList: () => void; } interface State { name: string; endpoint: string; token: string; loading: boolean; } declare class WorkspacePrisma extends Component { constructor(props: any); componentDidMount(): void; render(): JSX.Element; private connectToPrisma; } export default WorkspacePrisma;