/**
 * Return a random name of file with extension
 *
 * eg - .js --> source-<somerandomstring>-<timestamp>.js
 * @param ext Extension of the file
 */
export declare function getFileName(ext?: string): string;
