import { ElementType } from "react"; import { StyleObject, StyletronBase } from "styletron-react"; import { TARGET } from "./constants"; export declare type InputOverridesT = { Link?: StyleObject; }; export declare type StyledLinkPropsT = { href?: string; to?: string; target?: keyof typeof TARGET; children?: React.ReactNode; highlight?: boolean; as?: ElementType | StyletronBase; onClick?: (event: React.MouseEvent) => void; overrides?: InputOverridesT; };