/** * Get the value of a property if present or use default value. * @param defaultValue :: a * @param key :: PropertyKey * @param obj :: { [PropertyKey]?: a } * @returns :: a */ export declare const propOr: { (defaultValue: A, key: K, obj: { [Key in K]: A; }): A; (defaultValue: A, key: K): (obj: { [Key in K]: A; }) => A; (defaultValue: A): { (key: K, obj: { [Key in K]: A; }): A; (key: K): (obj: { [Key in K]: A; }) => A; }; }; //# sourceMappingURL=propOr.d.ts.map