import { CSSProperties, DefineComponent } from 'vue'; declare const defaultOptions: { className: string; viewportClassName: string; type: "default" | "keyShape" | "delegate" | undefined; padding: number; size: number[]; delegateStyle: { fill: string; stroke: string; }; refresh: boolean; }; export interface MiniMapProps { /** * @description 是否开启 * @default false */ visible: boolean; /** * @description MiniMap 配置项 * @default */ options?: Partial; style?: CSSProperties; } export declare const MiniMap: DefineComponent; export default MiniMap;