UNPKG

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