/** * Converts and format a variable number of `args` as is specified by `format`. * `printf` writes the formatted string to standard output. * @param format * @param args */ export declare function printf(format: string, ...args: unknown[]): void; /** * Converts and format a variable number of `args` as is specified by `format`. * `sprintf` returns the formatted string. * * @param format * @param args */ export declare function sprintf(format: string, ...args: unknown[]): string; export { }