import { ManifestEntry } from './types';
/**
 * Parse the manifest file and create a list ManifestEntry objects.
 *
 * @param manifestPath {string} The filepath for the manifest
 * @returns {ManifestEntry[]} An array for ManifestEntry objects from the manifest.
 */
export declare const parseToManifestEntriesArray: (manifestPath: string) => Promise<ManifestEntry[]>;
/**
 * Convert the argument into an array datatype
 *
 * @param arrayOrObjectOrUndefined
 * @returns Array
 */
export declare const toArray: (arrayOrObjectOrUndefined: any) => any[];
