import { FacetRequired, fullTextSearchResponse, Narrow, SortBy } from "../models/fullTextSearch"; import { Channel } from "../models/common"; interface LandingPageProps { slug: string; storeID: number; uuid: string; cdn: number; userToken: string; sessionStart: number; page?: number; productsPerPage?: number; sortBy?: SortBy; narrowBy?: Narrow[]; facetRequired?: FacetRequired; withAttributes?: boolean; hasShopifyMarkets?: boolean; companyLocationContext?: number; channel?: Channel; } export declare const LandingPage: { getLandingPage: ({ uuid, storeID, cdn, facetRequired, narrowBy, page, productsPerPage, slug, sortBy, withAttributes, hasShopifyMarkets, companyLocationContext, channel }: LandingPageProps) => Promise; }; export {};