import { TDecorator } from '../index'; export interface IAddPropOptions { addIfValueUnset?: boolean; } export default function addProp(propName: string, propValue: any, { addIfValueUnset }?: IAddPropOptions): TDecorator;