import { FC } from 'react';
export interface WorkflowMiniMapProps {
    show?: boolean;
    className?: string;
    maskColor?: string;
    nodeColor?: string;
    nodeStrokeWidth?: number;
    nodeBorderRadius?: number;
    position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
}
/**
 * WorkflowMiniMap component for rendering canvas overview
 * Provides navigation and overview of the entire workflow
 */
export declare const WorkflowMiniMap: FC<WorkflowMiniMapProps>;
//# sourceMappingURL=WorkflowMiniMap.d.ts.map