import type { IWiringSourceInput } from './i-wiring-source-input.js'; import type { IRegistryDeclaration } from './registry-declaration.js'; /** The AUTHORED registry declaration (round 13): `source` / `consumer` take the markable {@link IWiringSourceInput}. */ export interface IRegistryDeclarationInput extends Omit { readonly source: IWiringSourceInput; readonly consumer?: IWiringSourceInput; } //# sourceMappingURL=i-registry-declaration-input.d.ts.map