import { VersionServiceInterface } from './version-service-interface'; import { MethodType } from '../../codegen/model/methodType'; export declare abstract class VersionServiceBase implements VersionServiceInterface { protected document: Document; logoClass: string; methods: MethodType[]; footerText: any; pageTitle: string; supportEmail: string; protected constructor(document: Document); }