export declare class DependencyExtractor {
    /**
     * Extract dependencies for the provided class if any
     * @param {Object} clazz the class the dependencies should be extracted for
     *
     * @returns {Array}
     * @public
     */
    extractDependenciesFor(clazz: any): string[];
    getArguments(definition: string): string[];
}
