import { HelloWellness } from "../../interfaces/types/HelloWellness"; import { Category, SpotlightSummary } from "./types"; type ApplyHelloWellnessNavCategoriesParams = { helloWellness?: HelloWellness | null; categoryItems?: Category[]; categorySpotlights?: SpotlightSummary[]; }; export declare const applyHelloWellnessNavCategories: ({ helloWellness, categoryItems, categorySpotlights, }: ApplyHelloWellnessNavCategoriesParams) => { items: { iconUrl: string; categoryName: string; name: string; slugName: string; imageColor: string; displayName: string; permalink: string; slug: string; childCates: any[]; }[]; spotlights: SpotlightSummary[]; }; export {};