import { ICurrentSelection } from '../domain';
export declare class FSelectionChangeEvent implements ICurrentSelection {
    fNodeIds: string[];
    fGroupIds: string[];
    fConnectionIds: string[];
    constructor(fNodeIds: string[], fGroupIds: string[], fConnectionIds: string[]);
}
