///
import './style.less';
export interface CardGreetProps {
typeId: string;
pageId: string;
pageData?: PageDataProps;
cardStyle?: '';
}
interface PageDataProps {
role: string;
id: string;
cardStyle: string;
title: string;
titleReadme: string;
content: string;
buttons?: Array;
}
interface ButtonProps {
titleValue: string;
actionType_click: string;
actionFun_click: string;
inParams?: string;
}
declare function CardGreet(props: CardGreetProps): JSX.Element;
export default CardGreet;