import { type ChartMetadata } from './chart-metadata.js';
/**
 * Represents information about a Helm chart.
 * This class is designed to be serializable from JSON with unknown properties ignored.
 */
export declare class ChartInfo {
    readonly metadata: ChartMetadata;
    /**
     * Creates a new ChartInfo instance.
     * @param metadata The metadata associated with the chart
     */
    constructor(metadata: ChartMetadata);
}
