/** * @description 다중 컬럼 리스트를 구성하는 컴포넌트들의 모음입니다. * @property {RootProps} Root - 목록 컨테이너 * @property {CategoryContainerProps} CategoryContainer - 카테고리 컨테이너(좌측) * @property {ListContainerProps} ListContainer - 리스트 컨테이너(우측) * @property {CategoryProps} Category - 카테고리 * @property {ListProps} List - 리스트 * * @example * // 기본 사용 예시 * * * 카테고리 1 * 카테고리 2 * * * * *
  • 항목 1
  • *
  • 항목 2
  • *
    * *
  • 항목 3
  • *
  • 항목 4
  • *
    *
    *
    */ declare const MultiColumnList: { Root: ({ children, className, currentActiveCategory, onCategoryChange, ...rest }: import("./MultiColumnList.types").RootProps) => import("react/jsx-runtime").JSX.Element; CategoryContainer: ({ className, children, ...rest }: import("./MultiColumnList.types").RootProps) => import("react/jsx-runtime").JSX.Element; ListContainer: ({ children, className, ...rest }: import("./MultiColumnList.types").RootProps) => import("react/jsx-runtime").JSX.Element; Category: ({ children, className, index, ...rest }: import("./MultiColumnList.types").CategoryProps) => import("react/jsx-runtime").JSX.Element; List: ({ children, title, index, ...rest }: import("./MultiColumnList.types").ListProps) => import("react/jsx-runtime").JSX.Element | null; }; export { MultiColumnList };