import { type IDropListGroupRefConfig } from '../Core/DropListGroupRef'; /** * Configuration for drop list group directive. * * @public */ export interface IDropListGroupConfig extends IDropListGroupRefConfig { } /** * Group drop lists together for automatic connection. * All drop lists within this element will be automatically connected, * allowing items to be moved between them. * * @param config - Configuration options. * @returns Directive. * * @public * * @example * ```typescript * html` *
*
*
Item 1
*
*
*
Item 2
*
*
* ` * ``` */ export declare const dropListGroup: (...values: Parameters) => any; //# sourceMappingURL=DropListGroupDirective.d.ts.map