1 | import { type HTMLChakraProps, type RecipeProps, type UnstyledProp } from "../../styled-system";
|
2 | export interface CodeBaseProps extends RecipeProps<"code">, UnstyledProp {
|
3 | }
|
4 | export interface CodeProps extends HTMLChakraProps<"code", CodeBaseProps> {
|
5 | }
|
6 | export declare const Code: import("react").ForwardRefExoticComponent<CodeProps & import("react").RefAttributes<HTMLElement>>;
|
7 | export declare const CodePropsProvider: React.Provider<CodeBaseProps>;
|