/** * Property decorator to inject dependencies * @param name of service to inject * * @example * class Service { * @Inject('instance') * private instance: FastifyInstance; * } */ export declare function Inject(name: string | symbol | unknown): PropertyDecorator;