import React from "react"; import { WithTheme } from "../types"; export declare type LearnMoreProps = WithTheme<{ onClick?: (e: React.MouseEvent) => void; linkText?: string; extendClass?: string; linkNode?: React.ReactNode; }>; export declare function LearnMore({ onClick, linkNode, extendClass, linkText, ...props }: LearnMoreProps): JSX.Element;