import { ComponentPropsWithRef } from 'react'; export interface FullBleedProps extends ComponentPropsWithRef<'div'> { className?: string; insideContainerClassName?: string; maxWidth?: string; paddingAdjustment?: string | number; } /** * 화면 전체 너비를 활용하는 레이아웃 컴포넌트 * @param {Object} props * @param {ReactNode} props.children - 내부 컨텐츠 * @param {string} [props.maxWidth] - 최대 너비 설정 * @param {string} [props.className] - 외부 컨테이너 클래스 * @param {string} [props.insideContainerClassName] - 내부 컨테이너 클래스 * @param {string | number} [props.paddingAdjustment] - 패딩 보정값(단위 : px) */ declare const FullBleed: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export { FullBleed };