export declare type Undefined = undefined | void; export declare type Nullish = null | Undefined; export declare type StringOrNumber = string | number; export declare type RecordKey = StringOrNumber | symbol; export declare type Dict = Record; export declare type AnyRecord = Record; export declare type AnyFunc = (...args: T[]) => any; export declare type AnyArray = []; //# sourceMappingURL=index.d.ts.map