/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ /** * Check if a path exists */ export declare function pathExists(path: string): boolean; /** * Resolve an absolute path from a potentially relative path */ export declare function resolvePath(path: string, base?: string): string; /** * Extract UI bundle name from UI bundle directory path */ export declare function extractUIBundleName(uiBundleDir: string): string; /** * Check if a path points to SFDX metadata (Apex classes, objects, etc.) */ export declare function isSfdxMetadataPath(path: string): boolean; /** * Check if a path contains the UI bundle placeholder */ export declare function hasUIBundlePlaceholder(path: string): boolean; /** * Normalize path separators to forward slashes */ export declare function normalizePath(path: string): string; //# sourceMappingURL=utils.d.ts.map