import * as Schema from 'effect/Schema'; import * as internal from './internal'; import * as Obj from './Obj'; import * as Type from './Type'; /** * A an ordered set of objects. */ export declare const Collection: Type.Obj<{ readonly name?: string | undefined; readonly objects: readonly internal.Ref[]; }, Schema.Struct.Fields>; export type Collection = Type.InstanceType; export declare const make: (props?: Partial>) => Collection; export declare const isCollection: (value: unknown) => value is Collection; //# sourceMappingURL=Collection.d.ts.map