/**
* Utility class for build-related functionality.
*/export declare classBuildUtil {
/**
* Determines if the application is running in development mode.
*
* @returns {boolean} True if the application is in development mode, false otherwise.
*/staticisDevMode(): boolean;
}