/** * Utility functions and constants related to environment variables. */ /** * Extract organization name from Azure DevOps organization URL */ export declare function getOrgNameFromUrl(url?: string): string; /** * Default project name from environment variables */ export declare const defaultProject: string; /** * Default organization name derived from the organization URL */ export declare const defaultOrg: string;