import React from "react"; export interface OMap<_, V> { [k: string]: V | undefined; } type Entries = Array<[string, V]>; export declare const entries: (map: OMap) => Entries; export declare const keys: (map: OMap) => string[]; export declare const values: (map: OMap) => V[]; export declare const toOmap: (map: Map) => OMap; export declare const createOmap: (entr?: Entries) => OMap; export declare const set: (map: OMap, k: string, v: V) => void; export declare const isDefined: (o: T | undefined) => o is T; export type Size = { width: number; height: number; }; export declare const toString: (v: any) => string; export declare const timeAgo: (d: number) => string; export declare const timeAgoFromDt: (dt: number) => string; export declare const fullTime: (d: number) => string; export declare const isLocal: () => boolean; export declare const preventDefaultAnd: any>(fn: T) => (e: React.MouseEvent) => void; export {}; //# sourceMappingURL=utils.d.ts.map