import type { SunburstOptions } from '@visactor/vlayouts'; import type { Datum } from '../../typings'; export interface ISunburstOpt extends SunburstOptions { width: number; height: number; } export declare const sunburstLayout: (data: Array, op: () => ISunburstOpt) => Datum[];