import type { TCollectionName, TSchema } from '../templates'; import type { Caller, Collection } from '@forestadmin/datasource-toolkit'; import AgentCustomizationContext from './agent-context'; import RelaxedCollection from './relaxed-wrappers/collection'; export default class CollectionCustomizationContext = TCollectionName> extends AgentCustomizationContext { protected realCollection: Collection; get collection(): RelaxedCollection; constructor(collection: Collection, caller: Caller); } //# sourceMappingURL=collection-context.d.ts.map