export type Counter = () => number; export type CreateCounter = (initial?: number) => Counter; /** * Creates a counter constructor function, starting at `0`. */ export declare const create_counter: CreateCounter; //# sourceMappingURL=counter.d.ts.map