import { LegacyHashService, LegacyService, ServiceLegalBasis, Translations } from '../../../Api/interfaces';
import { ServiceLabels as ServiceLabelsProps } from '../interfaces';
declare class ServiceLabels implements ServiceLabelsProps {
    description: string;
    id: string;
    legalBasis: ServiceLegalBasis[];
    name: string;
    constructor(service: LegacyService, translations?: Translations | null, legacyHashServices?: LegacyHashService[]);
}
export default ServiceLabels;
