import type { VNode } from 'vue';
export interface CustomComponentProps {
    style?: any;
    className?: string;
    displayMode: 'position' | 'cell';
    x?: number;
    y?: number;
    width?: number | string;
    height?: number | string;
    row?: number;
    col?: number;
    anchor?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
    dx?: number | string;
    dy?: number | string;
}
declare function CustomLayout(props: CustomComponentProps): VNode;
declare namespace CustomLayout {
    var symbol: string;
}
export default CustomLayout;
