import { Service } from '@usercentrics/cmp-browser-sdk'; import { DefaultServiceLabels } from '@usercentrics/cmp-browser-sdk/dist/src/services/SettingsV2/Labels/interfaces'; export declare type ServiceData = { data: T; title: string; description?: string; componentType: 'v-card' | 'list' | 'link' | 'text' | 'text-link'; }; export declare type VCardData = { name?: string; address?: string; }; export declare type ServiceDataTypes = number | string | string[] | VCardData | undefined | null; export declare function getServiceData(service: Service, labels?: DefaultServiceLabels): ServiceData[];