/**
 * Service for utility functions.
 */
export declare class UtilService {
    /**
     * Parse command line arguments from argv array.
     *
     * @param {string[]} argv - The command line arguments array (typically process.argv)
     * @returns {Record<string, any>} An object containing the parsed arguments
     */
    getCommandLineArguments(argv: string[]): Record<string, any>;
}
