type num = number;
type str = string;
/**
 * This TypeScript function generates a random string of symbols with a specified length.
 * @param {num} length - The length parameter is a number that specifies the length of the symbol
 * string that will be generated by the function.
 * @returns a string that consists of randomly generated symbols of a specified length.
 */
export default function GenerateSymbol(length: num, Symbols: str[]): str;
export {};
//# sourceMappingURL=SymbolGen.d.ts.map