/** * Replaces the format item in a specified string with the string representation of a corresponding object in a specified array. * @param expression A composite format string. * @param args An object array that contains zero or more objects to format. * @returns A copy of format in which the format items have been replaced by the string representation of the corresponding objects in args. * * @see https://learn.microsoft.com/en-us/dotnet/api/system.string.format * @todo Re-implement by parsing into expression and throw error for invalid cases. */ export declare function format(expression: string, ...args: unknown[]): string; //# sourceMappingURL=format.d.ts.map