import { DpsJsonResponse, LegacyHashService, Translations } from '../../Api/interfaces';
import { PrivacyButtonLabels } from './interfaces';
import ServiceLabels from './Common/ServiceLabels';
declare class PrivacyButton implements PrivacyButtonLabels {
    privacyButton: string;
    services: ServiceLabels[];
    constructor(dpsJson: DpsJsonResponse, legacyHashServices?: LegacyHashService[], translations?: Translations | null);
}
export default PrivacyButton;
