export interface PropertiesPathResult { normalizedWorkspace: string; resolvedTarget: string; } export declare function resolveWorkspaceRoot(workspacePath: string | unknown): string; export declare function ensureInsideWorkspace(workspaceRoot: string, targetPath: string): string; export declare function resolveWorkspaceFilePath(workspacePath: string | unknown, relativeOrAbsolutePath: string | unknown, defaultRelativePath: string): PropertiesPathResult; export declare function resolvePropertiesTargetPath(workspacePath: string | unknown, relativeOrAbsolutePath: string | unknown): PropertiesPathResult;