import { AllNamedTypeDefs, NexusListableTypes } from './wrapping'; /** * list() */ export declare type NexusListDefConfig = { type: TypeName; }; export declare class NexusListDef { readonly ofNexusType: TypeName; private _isNexusListDef; constructor(ofNexusType: TypeName); } export declare function list(type: TypeName): NexusListDef;