import React, { ComponentProps, ReactNode } from 'react'; import { Box } from '../Box/Box'; import * as styles from './Section.css'; export interface SectionProps extends Pick, 'paddingX' | 'ref'> { width?: keyof typeof styles.width; children?: ReactNode; } export declare const Section: ({ children, width, paddingX, ref, }: SectionProps) => React.JSX.Element; //# sourceMappingURL=Section.d.ts.map