import React, { ReactNode } from 'react'; import { eLayoutType } from '@abpjs/core'; export interface LayoutEmptyProps { /** Custom children to render instead of Outlet */ children?: ReactNode; } /** * Empty layout component for pages that don't need a navbar. * Translated from Angular LayoutEmptyComponent. * * Provides a minimal layout with just the router outlet. * Useful for error pages, landing pages, or custom layouts. * * @example * ```tsx * * ``` */ export declare function LayoutEmpty({ children }: LayoutEmptyProps): React.ReactElement; export declare namespace LayoutEmpty { var type: eLayoutType; } export default LayoutEmpty;