import type { IContributionExport } from './i-contribution-export.js'; /** * THE reading of a contribution module's entry list, shared by every registry * loader (conventions, helpers, hints, playbooks, constructs, …), so "which * list did the loader read, and at which position is each entry" has one * answer — the position a rejected entry is reported at. * * Order: a `default` array; else (unless `singleObject: false`) a single * `default` object read as a one-entry list; else the first `namedKeys` array. */ export declare function readContributionExport(mod: unknown, options?: { readonly namedKeys?: readonly string[]; readonly singleObject?: boolean; }): IContributionExport; //# sourceMappingURL=read-contribution-export.d.ts.map