import { type HelmChartSchema } from '../common/helm-chart-schema.js';
import { SemanticVersion } from '../../../../business/utils/semantic-version.js';
export declare class MirrorNodeConfigSchema {
    static readonly SCHEMA_VERSION: SemanticVersion<number>;
    static readonly EMPTY: MirrorNodeConfigSchema;
    schemaVersion: number;
    helmChart: HelmChartSchema | undefined;
    constructor(schemaVersion?: number, helmChart?: HelmChartSchema);
}
