import { Category, Service } from '@usercentrics/cmp-browser-sdk'; export declare type Navigation = { categorySlug?: string; serviceId?: string; }; export declare type ContentData = { service?: Service; category?: Category; categories?: Category[]; }; export declare const getContentDataByNavigation: (categories: Category[], navigation: Navigation) => ContentData; export declare const getCategoriesBySearch: (categories: Category[], search: string) => Category[];