import type { SetRouteOptions } from '../Openfort/types'; export type SetOnBackFunction = (() => void) | null | 'inherit' | 'back' | SetRouteOptions; type PageContentProps = { children?: React.ReactNode; width?: number | string; onBack?: SetOnBackFunction; logoutOnBack?: boolean; header?: string; }; export declare const PageContent: ({ children, width, onBack, logoutOnBack, header }: PageContentProps) => import("react/jsx-runtime").JSX.Element; export {};