import { Path } from '@serenity-js/core/io'; import { TinyType } from 'tiny-types'; /** * @package */ export declare class GAV extends TinyType { readonly groupId: string; readonly artifactId: string; readonly version: string; readonly extension: string; readonly classifier?: string; static fromString(gav: string): GAV; constructor(groupId: string, artifactId: string, version: string, extension?: string, classifier?: string); toPath(): Path; } //# sourceMappingURL=GAV.d.ts.map