interface Collection {
    keys: () => string[];
    get: (key: string) => string | null;
    getAll: (key: string) => string[];
}
declare type CollectionObject = {
    [key: string]: string | null;
};
export declare const collectionToObject: (collection: Collection) => CollectionObject;
export {};
