import { DecoratorOptions } from "./options"; import { Constructor } from "./util"; /** Constructs type/property decorators */ export default function DecoratorFactory(backend: string, options?: DecoratorOptions): (protoOrCtor: Object | Constructor, propertyName?: string) => void;