import { LayerRetrievalOptions } from "./LayerRetrievalOptions"; /** * Contains the children of a layer. * * @group Layer Utilities */ export interface ChildrenCollection { /** * Returns the items in this collection. */ getItems(options?: LayerRetrievalOptions): LayerType[]; }