import { TypographyProps } from "@material-ui/core/Typography"; import { Node } from "@ontologies/core"; import { MouseEvent, ReactNode } from "react"; export interface LDLinkProps extends TypographyProps { children?: ReactNode; className?: string; to?: Node | string; onClick?: (e: MouseEvent) => void; } export declare const LDLink: any;