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