import { Page } from '@/payload-types'; import { type StaticImageData } from 'next/image'; interface WebsiteSectionProps { hero: any; page: Page; type: 'print' | 'slideshow'; orientation: 'portrait' | 'landscape' | 'flow'; logoImage?: StaticImageData; [key: string]: any; } export declare function Publish({ type, orientation: initialOrientation, ...args }: WebsiteSectionProps): import("react/jsx-runtime").JSX.Element | undefined; export {};