1 | import { type HTMLChakraProps, type RecipeProps, type UnstyledProp } from "../../styled-system";
|
2 | export interface LinkBaseProps extends RecipeProps<"link">, UnstyledProp {
|
3 | }
|
4 | export interface LinkProps extends HTMLChakraProps<"a", LinkBaseProps> {
|
5 | }
|
6 | export declare const Link: import("react").ForwardRefExoticComponent<LinkProps & import("react").RefAttributes<HTMLAnchorElement>>;
|
7 | export declare const LinkPropsProvider: React.Provider<LinkProps>;
|