export declare class ListNode { value: any; next: ListNode; prev: ListNode; constructor(value: any, next?: ListNode, prev?: ListNode); }