/// /** * The StyledLink component is used to style links. * *```tsx * import * as React from "react" * import * as System from "@harborschool/lighthouse" * * export default () => { * return ( * * Your account * * ) * } * ``` * @param href - string * @param target - "_blank" | "_self" | "_parent" | "_top" * @param children - React.ReactNode * @param highlight - boolean * @param as - React.ElementType * @param onClick - (event: React.MouseEvent) => void * @param overrides - \{ Link?: StyletronReact.StyleObject } */ export declare const StyledLink: React.FC; export * from "./types"; import { StyledLinkPropsT } from "./types";