/**
 * 缩放组件
 * - 放大
 * - 缩小
 * - 缩放到适应屏幕
 * - 缩放到 1:1
 */
import type { IPosition } from '@antv/xflow';
import React from 'react';
import { CANVAS_SCALE_TOOLBAR_CONFIG } from './config';
interface IProps {
    position: IPosition;
    className?: string;
    style?: React.CSSProperties;
}
declare const CanvasScaleToolbar: React.FC<IProps>;
export { CanvasScaleToolbar, CANVAS_SCALE_TOOLBAR_CONFIG };
