/*! * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { DocNode, DocNodeContainer, IDocNodeContainerParameters } from '@microsoft/tsdoc'; export interface DocListParameters extends IDocNodeContainerParameters { } export declare class DocList extends DocNodeContainer { constructor(parameters: DocListParameters, children?: DocNode[]); /** @override */ readonly kind: string; } //# sourceMappingURL=docList.d.ts.map