export declare type Dictionary = { [key: string]: T; }; export declare type Nullable = T | null; export declare type DeepPartial = { [P in keyof T]?: DeepPartial; };