import { binding } from "../binding"; import type { OrderedCollectionInternal } from "../OrderedCollection"; import type { TypeHelpers } from "../TypeHelpers"; type Getter = (collection: CollectionType, index: number) => T; type GetterFactoryOptions = { fromBinding: TypeHelpers["fromBinding"]; itemType: binding.PropertyType; }; /** @internal */ export declare function createDefaultGetter({ fromBinding, itemType, }: GetterFactoryOptions): Getter; export {};