import { HybridFormsClientConfig, RequestType } from '../types/types'; export declare abstract class BaseController { protected readonly config: HybridFormsClientConfig; protected readonly request: RequestType; protected basePath: string; constructor(config: HybridFormsClientConfig, request: RequestType); protected abstract init(): void; }