import { BaseLayout } from '../base-layout.js';
import { AntVDagreLayoutOptions } from './types.js';
/**
* AntV 实现的 Dagre 布局
*
* AntV implementation of Dagre layout
*/
declare class AntVDagreLayout extends BaseLayout {
id: string;
protected getDefaultOptions(): AntVDagreLayoutOptions;
protected layout(options: AntVDagreLayoutOptions): Promise;
}
export { AntVDagreLayout, AntVDagreLayoutOptions };