import { DefaultButtonLabels, DefaultFirstLayerLabels, DefaultLabels, DefaultSecondLayerLabels } from './interfaces';
import { DpsJsonResponse, LegacyHashService, LegacySettings, Translations } from '../../Api/interfaces';
import CommonLabels from './Common/CommonLabels';
declare class Default extends CommonLabels implements DefaultLabels {
    buttons: DefaultButtonLabels;
    firstLayer: DefaultFirstLayerLabels;
    secondLayer: DefaultSecondLayerLabels;
    constructor(legacySettings: LegacySettings, dpsJson: DpsJsonResponse, translations?: Translations | null, aggregatedServices?: LegacyHashService[]);
}
export default Default;
