import { CardProps } from 'naive-ui'; import { IConRenderOp, IConRightRenderOp, IConRightRenderItemOp, BaseCon } from './BaseCon'; /** * 卡片 */ export declare class Card extends BaseCon { /** 控件类型 */ static ConType: string; /** 控件名字 */ static ConName: string; /** 单例对象 */ static I: Card; props: CardProps; cardName: string; cardFooter: string; renderRaw({ ctx, formConfig, cons, activateCon, formData }: IConRenderOp): import("vue/jsx-runtime").JSX.Element; getRight(op: IConRightRenderOp): IConRightRenderItemOp[]; }