import React from 'react'; import { SortableItemProps } from '../DragSortList'; import './index.less'; declare type IdType = string | number; export interface MultipleContainersSortListProps { list: Record; vertical?: boolean; wrapStyle?: React.CSSProperties; onChange: (val: Record) => void; renderContainer?: DefaultRenderContainerProps['renderContainer']; rowKey: IdType | ((val: T) => IdType); children: SortableItemProps['children']; quickFilterMaxLength: number; } export declare const TRASH_ID = "void"; interface DefaultRenderContainerProps { id: IdType; renderContainer: (params: { children: React.ReactElement; ref: any; id: IdType; }) => React.ReactElement; children: any; } declare const MultipleContainersSortList: >(props: MultipleContainersSortListProps) => React.JSX.Element; export default MultipleContainersSortList;