import * as React from "react"; import type { LinkProps as MuiLinkProps } from "@mui/material"; declare type TextTransform = "none" | "capitalize" | "uppercase" | "lowercase" | "initial" | "inherit"; export interface LinkProps extends Pick { textTransform?: TextTransform; whiteSpace?: React.CSSProperties["whiteSpace"]; target?: React.AnchorHTMLAttributes["target"]; } export declare const Link: ({ href, textTransform, target, children, whiteSpace, ...props }: LinkProps) => JSX.Element; export {}; //# sourceMappingURL=link.d.ts.map