/** * Extracts and sanitizes a repository name. * * @param name - The repository name to extract and sanitize * @returns Sanitized repository name, or default repository name if empty */ export declare function extractName(name: string): string; /** * Extracts and sanitizes a repository owner name. * * @param owner - The repository owner name to extract and sanitize * @returns Sanitized repository owner name, or undefined if input is empty */ export declare function extractOwner(owner: string): string | undefined; //# sourceMappingURL=extract-names.d.mts.map