import React from 'react'; interface BoxLayoutProps { width?: string; backgroundColor?: string; children?: React.ReactNode; gutter?: string; minHeight?: string; paddingTop?: string; paddingBottom?: string; } export declare function BoxLayout({ width, gutter, backgroundColor, children, minHeight, paddingTop, paddingBottom, }: BoxLayoutProps): import("react/jsx-runtime").JSX.Element; export declare namespace BoxLayout { var displayName: string; } export {};