import React from 'react'; import { StyleSheet } from '@airbnb/lunar/lib/hooks/useStyles'; export declare type LayoutProps = { /** Horizontally center main content. */ centerAlign?: boolean; /** The primary main content. */ children: NonNullable; /** Expand main content to full width of viewport. */ fluid?: boolean; /** Min height of the main content. */ minHeight?: number | string; /** Remove background color from main content. */ noBackground?: boolean; /** Remove padding from main content. */ noPadding?: boolean; /** Custom style sheet. */ styleSheet?: StyleSheet; }; export declare type AsideProps = { /** The after aside content. */ after?: React.ReactNode; /** The before aside content. */ before?: React.ReactNode; }; /** Abstract layout manager that all other layouts extend from. */ export default function Layout({ after, before, centerAlign, children, fluid, minHeight, noBackground, noPadding, styleSheet, }: LayoutProps & AsideProps): JSX.Element; //# sourceMappingURL=index.d.ts.map