/// <reference types="react" />
import { Node } from '@ali/sutee-lowcode-engine';
import { TriggerDirection } from "../../common/types";
declare const CnLayoutBlockPrototype: {
    title: string;
    componentName: string;
    icon: import("react").JSX.Element;
    docUrl: string;
    isContainer: boolean;
    canResizing: (node: Node, triggerDirection: TriggerDirection) => boolean;
    onResizeStart: (e: MouseEvent & {
        trigger: string;
        deltaX?: number;
        deltaY?: number;
    }, d: string, currentNode: any) => void;
    onResize: (e: MouseEvent & {
        trigger: 'e' | 'w';
        deltaX?: number;
        deltaY?: number;
    }, d: any, currentNode: any) => void;
    onResizeEnd: (e: MouseEvent, d: any, currentNode: any) => void;
    configure: any[];
};
export { CnLayoutBlockPrototype };
