import { PropsWithChildren } from 'react'; import { ListItemProps, ListRootProps } from './List.types'; /** * List 컴포넌트는 스크롤 가능한 목록을 표시하는 컴포넌트입니다. * Root와 Item 서브컴포넌트로 구성되어 있습니다. * * @component * @property {ListRootProps} Root - 목록 컨테이너 * @property {ListItemProps} Item - 목록 항목 * * @example * ```tsx * import List from './List'; * * const MyList = () => ( * * * * * * ); * ``` */ declare const List: { Root: ({ children, className, disableScroll, ...rest }: ListRootProps) => import("react/jsx-runtime").JSX.Element; Item: ({ leadingIcon, text, selected, disabled, canceled, children, className, isFocused, ...rest }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; }; export { List };