import { ElementScroll } from '../../../index'; import { CoreConfig } from '..'; export type DroppableConfig = { droppable: HTMLElement; config: CoreConfig; scroll: ElementScroll; }; export default class ConfigHandler { static configs: DroppableConfig[]; static addConfig(droppable: HTMLElement, config: CoreConfig): void; static removeObsoleteConfigs: () => void; static updateScrolls(currentDroppable: Element, droppableGroupClass: string | null): void; static getConfig(curerntDroppable: Element): DroppableConfig | undefined; }