import { ComponentPropsWithoutRef, PropsWithChildren } from 'react';
import { BoxProps } from '../../Base/Layouts/Box/Box';
/**
* 카드 레이아웃 컴포넌트입니다.
*
* @component
*
* @description
* 그림자와 둥근 모서리를 가진 카드 컨테이너입니다.
* Header, Content, Footer 서브 컴포넌트를 조합하여 사용할 수 있습니다.
*
* @example
* ```tsx
* // 기본 사용
*
*
* 제목
*
*
* 내용
*
*
*
*
*
*
* // Content만 사용
*
*
* 내용만
*
*
* ```
*/
declare const Card: {
({ children, ...rest }: PropsWithChildren>): import("react/jsx-runtime").JSX.Element;
Header: ({ children, ...rest }: PropsWithChildren>) => import("react/jsx-runtime").JSX.Element;
Content: ({ className, children, ...rest }: BoxProps) => import("react/jsx-runtime").JSX.Element;
Footer: ({ children, ...rest }: PropsWithChildren>) => import("react/jsx-runtime").JSX.Element;
};
export { Card };