import type { InternalInspect, Options } from "../types.d.mts"; type InspectItem = (value: any, object: any, options: Options, inspect: InternalInspect) => string; declare const inspectList: (list: ArrayLike, from: unknown, options: Options, inspect: InternalInspect, inspectItem?: InspectItem, separator?: string) => string; export default inspectList;