UNPKG

436 BTypeScriptView Raw
1import { type HTMLChakraProps, type RecipeProps, type UnstyledProp } from "../../styled-system";
2export interface KbdBaseProps extends RecipeProps<"kbd">, UnstyledProp {
3}
4export interface KbdProps extends HTMLChakraProps<"kbd", KbdBaseProps> {
5}
6export declare const Kbd: import("react").ForwardRefExoticComponent<KbdProps & import("react").RefAttributes<HTMLElement>>;
7export declare const KbdPropsProvider: React.Provider<KbdProps>;