export type TDictionary<T = unknown> = {
    [key: string]: T;
};
