export default class Id { private id; constructor(id: string[]); clone(): Id; length(): number; splice(start: number, deleteCount: number): Id; get(index: number): string; push(...newValues: string[]): Id; toString(): string; }