import { IPoint } from '@foblex/2d';
export declare class FCreateConnectionEvent {
    fOutputId: string;
    fInputId: string | undefined;
    fDropPosition: IPoint;
    constructor(fOutputId: string, fInputId: string | undefined, fDropPosition: IPoint);
}
