/// import './style.less'; export interface CardLinkProps { typeId: string; pageId: string; answer: string; pageData: PageDataProps; onComplete?: () => void; } interface PageDataProps { id: string; pageTitle: string; targetMenuId: string; targetParams: ''; } declare function CardLink(props: CardLinkProps): JSX.Element; export default CardLink;