import { PageProps } from '@wix/design-system'; import { ReactNode } from 'react'; import { CollectionPageHeader } from '../CollectionPageHeaderNew'; import { CollectionPageContent } from '../CollectionPageContent'; export interface CollectionPageProps extends PageProps { children?: ReactNode; } declare function _CollectionPage({ children, ...rest }: CollectionPageProps): JSX.Element; declare namespace _CollectionPage { var Header: typeof CollectionPageHeader; var Content: typeof CollectionPageContent; var displayName: string; } export declare const CollectionPage: typeof _CollectionPage & { displayName: string; }; export {}; //# sourceMappingURL=CollectionPage.d.ts.map