import { IExtendedMutable as INodeExtendedMutable } from "../INode"; import Children from "./Children"; import { IMutable, Init, IStatic, Ordering } from "./IList"; import Type from "./Type"; export * from "./IList"; export declare class Generic implements IMutable { readonly type: Type.List; ordering: Ordering; children: Children>; constructor(init: Init); } export declare class List extends Generic<{}> { } export declare const klass: IStatic; export default List;