import type { JSX } from 'react';
import type { CatalogConfig } from '../../config';
export type CatalogClassicProps = {
    pageProps: {
        catalogId: string;
        catalogConfig: CatalogConfig;
    };
};
export default function CatalogClassic(props: CatalogClassicProps): JSX.Element;
export declare const CatalogPageContent: import("styled-components").StyledComponent<"main", any, {}, never>;
export declare const CatalogTitle: import("styled-components").StyledComponent<"h2", any, {}, never>;
export declare const CatalogDescription: import("styled-components").StyledComponent<"p", any, {}, never>;
export declare const CatalogPageWrapper: import("styled-components").StyledComponent<"div", any, {
    withoutFilters?: boolean;
}, never>;
export declare const CatalogPageDescriptionWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
