UNPKG

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