type Omit = Pick>; export type PartialBy = Omit & Partial>; export type Nullable = T | null; export type Optional = T | undefined; export type CSSObject = Partial; export {};