import { DiagramModel } from '../model/diagram-model'; import { DiagramLayout } from './diagram-layout'; /** * A layout which arranges the nodes by a breadth first search system according to their distance to the first node in the list. * @public */ export declare class BreadthLayout implements DiagramLayout { gapSize?: number; constructor(gapSize?: number); apply(model: DiagramModel): DiagramModel; }