import { CcpaButtonLabels, CcpaFirstLayerLabels, CcpaLabels, CcpaSecondLayerLabels } from './interfaces';
import { DpsJsonResponse, LegacyHashService, LegacySettings, Translations } from '../../Api/interfaces';
import CommonLabels from './Common/CommonLabels';
declare class Ccpa extends CommonLabels implements CcpaLabels {
    buttons: CcpaButtonLabels;
    firstLayer: CcpaFirstLayerLabels;
    secondLayer: CcpaSecondLayerLabels;
    constructor(legacySettings: LegacySettings, dpsJson: DpsJsonResponse, translations?: Translations | null, aggregatedServices?: LegacyHashService[]);
}
export default Ccpa;
