import type { PropsWithChildren } from 'react'; interface AppLayoutContentProps extends PropsWithChildren { isSidebarHidden?: boolean; } declare const AppLayoutContent: ({ children, isSidebarHidden }: AppLayoutContentProps) => import("react/jsx-runtime").JSX.Element; export default AppLayoutContent;