export type Dict<T> = {
    [key: string]: T | undefined;
};
