/**
* Formats a string by replacing the placeholders with the specified parameters
* @param {string} str The format string
* @param {any[]} args The replacement strings
* @returnstring
*/exportdeclareconstformat: (str: string, ...args: any[]) =>string;