import { ForwardRefExoticComponent, ReactNode, RefAttributes } from 'react'; import { BastListItem } from './BastListItem'; type TBastListStaticProps = { Item: typeof BastListItem; }; type TBastListProps = { className?: string; inset?: boolean; }; declare const BastList: ForwardRefExoticComponent> & TBastListStaticProps; export { BastList };