import { Maybe } from 'true-myth'; import type { RegistrySettings } from '../config/registry-settings.ts'; import type { FileDescription } from '../file-manager/file-description.ts'; import type { RegistryClient } from './registry/registry-client.ts'; export type PublishedReleaseArtifacts = { readonly publishedAt?: Date | undefined; readonly version: string; readonly gitHead: string | undefined; readonly files: readonly FileDescription[]; }; export declare function fetchPublishedArtifacts(registryClient: RegistryClient, name: string, registrySettings: RegistrySettings): Promise>; //# sourceMappingURL=fetch-published-artifacts.d.ts.map