/**
 * Gets the full URL for a Docker image
 *
 * @param imageString The image string to parse
 * @param includeTag Whether to include the tag in the output. Defaults to true.
 * @returns Formatted image URL
 */
export declare const getImageUrl: (imageString: string, includeTag?: boolean) => string;
