import { ClientCollectionConfig } from 'payload';
import './styles.scss';
interface BoardCardListProps {
    listId: string;
    contents: any[];
    collection: ClientCollectionConfig;
    dragEnabled: Boolean;
}
declare const BoardCardList: (props: BoardCardListProps) => import("react").JSX.Element;
export default BoardCardList;
