export declare const dynamic = "force-dynamic"; import 'server-only'; import { ReactNode } from 'react'; import type { Config } from 'payload'; export interface ServerQwickAppProps { children: ReactNode; payloadConfig: Config; appBar?: { /** Actions to display - use render function for server/client boundary safety */ actions?: ReactNode | (() => ReactNode); }; /** Optional providers wrapper component (e.g., ClientProviders for auth/cart/etc) */ providers?: React.ComponentType<{ children: ReactNode; }>; } /** * ServerQwickApp - Server Component * Fetches navigation and settings from CMS and passes to client component */ export declare function ServerQwickApp({ children, payloadConfig, appBar, providers }: ServerQwickAppProps): Promise; //# sourceMappingURL=ServerQwickApp.d.ts.map