import { type ChartInfo } from './chart-info.js';
import { type ReleaseInfo } from './release-info.js';
export declare class Release {
    readonly name: string;
    readonly info: ReleaseInfo;
    readonly chart: ChartInfo;
    constructor(name: string, info: ReleaseInfo, chart: ChartInfo);
}
