import { Collector } from './types'; import { KeyValue } from '../../vision/types'; export declare class ElixirCollector implements Collector { protected collections: KeyValue; add: (name: string, value: any) => ElixirCollector; get: (name: string) => any; all: () => KeyValue; clear: (name?: string | undefined) => ElixirCollector; }