/**
 * Returns list of Inputs and populates Map of Nodes
 * @param {string} fileName- Name of the file from which Inputs need to extract
 * @param {string} fileContent- Contents of the file from which Inputs need to extract
 * @param {Map} paramNodes- Map for params(Inputs/Outputs)
 */
export declare function getFileInputs(fileName: string, fileContent: string, paramNodes: Map<string, {
    edges: string[];
    label: string;
}>): string[];
