/** * Gets the value of a property from an object with a * default if that prop is undefined * @param obj * @param prop * @param def */ export declare function getWithDefault(obj: { [key: string]: any; }, prop: string, def: any): any;