///
import './style.less';
export interface ThinkingProps {
typeId: string;
pageId: string;
pageData: PageDataProps;
answer: string;
}
interface PageDataProps {
thinkingList: Array;
cardStyle: string;
}
interface ContentItem {
title: string;
content: string;
type?: string;
stepNo: number;
finish?: boolean;
onComplete?: () => void;
}
declare function Thinking(props: ThinkingProps): JSX.Element;
export default Thinking;