export interface Counter { next(): number; } export declare function new_counter(init?: number): Counter; export declare const Counter: Counter;