import { PageProps } from '@wix/design-system'; import React, { ReactNode } from 'react'; import { CollectionPageHeader } from '../CollectionPageHeaderNew'; import { CollectionPageContent } from '../CollectionPageContent'; import { CollectionPageFooter } from '../CollectionPageFooter'; export interface CollectionPageProps extends PageProps { /** * Accepts [CollectionPage.Header](./?path=/story/base-components-pages-collection-page--collectionpage-header) and [CollectionPage.Content](./?path=/story/base-components-pages-collection-page--collectionpage-content) elements * @external */ children?: ReactNode; } declare function _CollectionPage({ children, scrollableContentRef, ...rest }: CollectionPageProps): React.JSX.Element; declare namespace _CollectionPage { var Header: typeof CollectionPageHeader; var Content: typeof CollectionPageContent; var Footer: typeof CollectionPageFooter; var displayName: string; } export declare const CollectionPage: typeof _CollectionPage & { displayName: string; }; export {}; //# sourceMappingURL=CollectionPage.d.ts.map