export type Pair = [any, any];
export type List = null | Pair;
export declare function pair(car: any, cdr: any): Pair;
export declare function vector$45$$62$list(v: any[]): List;
