import { Product, StartPage } from '@jetshop/core/types'; import { Components } from '../ContentRenderer'; import React from 'react'; import { QueryResult } from '@apollo/client'; type ProductGrid = React.FC<{ products: Product[]; }>; export interface StartPageProviderProps { result: QueryResult<{ startPage: StartPage; }, any>; LoadingPage?: React.FC; ProductGrid?: ProductGrid; startPageComponents: Components; } declare const StartPageRenderer: ({ result, ProductGrid, startPageComponents: components, LoadingPage }: StartPageProviderProps) => JSX.Element; export default StartPageRenderer;