import { Adaptor } from '../../core/adaptor';
import { Plot } from '../../core/plot';
import './interactions';
import { MixOptions } from './types';
export type { MixOptions };
/**
 * 多图层图形，释放 G2 80% 的功能，可以用来做：
 * 1. 图层叠加的图：
 *   - 折线 + 置信度区间迭代
 *   - 嵌套饼图
 *   - ...
 * 2. 图层划分的图
 *   - 多维图
 *   - 柱饼组合图
 *   - ...
 */
export declare class Mix extends Plot<MixOptions> {
    /** 图表类型 */
    type: string;
    /**
     * 获取适配器
     */
    protected getSchemaAdaptor(): Adaptor<MixOptions>;
}
