import Codable, { CodableF } from './Codable'; export default class List implements Codable { C: CodableF; data: Array; static from(C: CodableF, data: Array): List; constructor(C: CodableF, data: Array); static default(C: CodableF, d: T): List; getC(): CodableF; get raw(): Array; setData(data: Array): void; toString(): string; toTypeString(): string; equals(list: List): boolean; }