interface ListOf { length: number; [index: number]: TNode; } export declare const toArray: (a: ListOf | T[]) => T[]; export declare const asArray: (a: T | T[]) => T[]; export declare const getFirst: (a: T | T[]) => T; export {};