import type { vec2 } from '../types/vectors';
interface MandelbrotActionArguments {
    center: vec2;
    magnificationMultiplier: number;
    width: number;
    height: number;
    numberOfIterations: number;
}
/**
 * Renders the Mandelbrot set to the canvas Element
 *
 */
declare function mandelbrotAction(node: HTMLCanvasElement, args: MandelbrotActionArguments): SvelteActionReturnType;
export default mandelbrotAction;
