import { AuthController } from './controller/AuthController'; import { CatalogsController } from './controller/CatalogsController'; import { FormDefinitionsController } from './controller/FormDefinitionsController'; import { FormsController } from './controller/FormsController'; import { SimpleAPIController } from './controller/SimpleAPIController'; import { HybridFormsClientConfig, RequestType } from './types/types'; export default class HybridFormsClient { private readonly authInstance; readonly request: RequestType; readonly requestWithAuth: RequestType; readonly auth: AuthController; readonly formDefinitions: FormDefinitionsController; readonly forms: FormsController; readonly simpleAPI: SimpleAPIController; readonly catalogs: CatalogsController; constructor(config: HybridFormsClientConfig); }