export abstract class ApiKeyService { setInformation: (clientId: string, clientSecret: string) => Promise; clear: () => Promise; getClientId: () => Promise; getClientSecret: () => Promise; getEntityType: () => Promise; getEntityId: () => Promise; isAuthenticated: () => Promise; }