import { IConRightRenderOp, IConRightRenderItemOp, BaseCon } from './BaseCon'; import { IRenderOp } from '../indexDialog'; /** * 空白间隔 */ export declare class Interval extends BaseCon { /** 控件类型 */ static ConType: string; /** 控件名字 */ static ConName: string; /** 单例对象 */ static I: Interval; props: { height: number; }; renderRaw({ formData }: IRenderOp): import("vue/jsx-runtime").JSX.Element; getRight(op: IConRightRenderOp): IConRightRenderItemOp[]; }