import type { CSSProperties, ReactNode } from 'react'; export type HostedPageShellProps = { /** Site display name (e.g. Brightlife Kids). */ displayName?: string; /** Optional cms-edit package version shown in the footer. */ version?: string; /** When false, omit the product line under the brand (minimal pages). */ showProductLine?: boolean; children: ReactNode; /** Override main content styles (e.g. narrower callback). */ mainStyle?: CSSProperties; }; /** * Shared chrome for hosted cms-edit HTML pages — Something Else branding. * Works in server and client components (no async / next/headers). */ export declare function HostedPageShell({ displayName, version, showProductLine, children, mainStyle, }: HostedPageShellProps): import("react").JSX.Element; //# sourceMappingURL=HostedPageShell.d.ts.map