import type { CardProps } from 'antd/lib/card'; import React from 'react'; export declare type FunctionHandleType = (e: any) => void; export interface MyCardProps extends CardProps { prefixIcon?: any; name?: string; hasHeader?: boolean; hasIcon?: string; pageState: any; pagePublicState: any; className: string; cardIconType: string; titleColor: string; headerColor?: string; extend?: any; visible?: boolean; size?: any; onValueRelease?: FunctionHandleType; onSelectedRowsRelease?: FunctionHandleType; onSelectedRowKeysRelease?: FunctionHandleType; onSelectedKeysRelease?: FunctionHandleType; onEditingKeyRelease?: FunctionHandleType; onInlineEditRelease?: FunctionHandleType; onInlineSaveRelease?: FunctionHandleType; onSelectedDataRelease?: FunctionHandleType; extendNum?: number; backgroundType?: any; appId?: string; getEngineApis?: any; subTitle?: string; titleFont?: string; titleLineHeight?: string; titleFontWeight?: number; subTitleColor?: string; subTitleFont?: string; subTitleLineHeight?: string; subTitleFontWeight?: number; extra?: React.ReactNode; } declare const MyCard: React.ForwardRefExoticComponent>; export default MyCard;