import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        numberOfIterations?: number;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export declare type MandelbrotExplorerProps = typeof __propDef.props;
export declare type MandelbrotExplorerEvents = typeof __propDef.events;
export declare type MandelbrotExplorerSlots = typeof __propDef.slots;
/**
 * Renders the Mandelbrot set.
 * Will fill its parent Element.
 */
export default class MandelbrotExplorer extends SvelteComponentTyped<MandelbrotExplorerProps, MandelbrotExplorerEvents, MandelbrotExplorerSlots> {
}
export {};
