/** * Config decorator expect a file name under process.cwd() + 'config' * @param fileNameOrPath * @returns {(target:Function)=>undefined} * @constructor */ export declare function Config(fileNameOrPath: string): (target: Function) => void;