import { LinkedOptionProducer, LinkedPartialOptionProducer, PrefabWrapperLinkedOption, PrefabWrapperLinkedPartialOption } from '../../types/options'; type RedundantKeys = 'type' | 'key'; type Attributes = Partial>; type PartialAttributes = Partial>; export declare const linked: (attrs: Attributes) => LinkedOptionProducer; export declare const linkedPartial: (attrs: PartialAttributes) => LinkedPartialOptionProducer; export {};