import React from 'react'; import { StyleSheet } from '@airbnb/lunar/lib/hooks/useStyles'; export declare const styleSheetShell: StyleSheet; export declare type LayoutShellProps = { /** The page content. */ children: NonNullable; /** Navigation side bar to display before the content. */ sideBar?: React.ReactNode; /** Navigation top bar to display above the content. */ /** Custom style sheet. */ styleSheet?: StyleSheet; }; /** Layout shell that wraps an entire application, providing optional side and top nav bars. */ export default function LayoutShell({ children, sideBar, styleSheet }: LayoutShellProps): JSX.Element; //# sourceMappingURL=index.d.ts.map