import { SvelteComponentTyped } from "svelte";
import type { vec2 } from "../types/vectors";
declare const __propDef: {
    props: {
        width: number;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {
            center: vec2;
            magnificationMultiplier: number;
        };
    };
};
export declare type InteractionHandlerProps = typeof __propDef.props;
export declare type InteractionHandlerEvents = typeof __propDef.events;
export declare type InteractionHandlerSlots = typeof __propDef.slots;
export default class InteractionHandler extends SvelteComponentTyped<InteractionHandlerProps, InteractionHandlerEvents, InteractionHandlerSlots> {
}
export {};
