import { PropsWithChildren } from 'react'; export interface SectionProps { /** * 반응형 디자인 사용 여부, desktop: 데스크탑 규격만 사용, mobile: 모바일 규격만 사용, auto: 데스크탑과 모바일 규격을 자동으로 사용 * @default auto */ responsive?: 'auto' | 'desktop' | 'mobile'; /** * 섹션 내부 콘텐츠 패딩 값 커스텀(0 or default) */ padding?: 0; /** * 섹션 외부 마진 제거 여부 * @default false */ noMargin?: boolean; } export declare const Section: ({ responsive, padding, noMargin, children }: PropsWithChildren) => import("@emotion/react/jsx-runtime").JSX.Element;