import React from 'react'; import { OverflowProps } from 'styled-system'; import { useLayout } from './grid'; export { useLayout }; export declare const Layout: React.FC<{ children: React.ReactNode; }>; declare type MainProps = React.HTMLAttributes; declare const Main: import("styled-components").StyledComponent>, import("styled-components").DefaultTheme, OverflowProps>>, never>; declare type LayoutType = typeof Layout & { Content: typeof Main; }; declare const _default: LayoutType; export default _default;