UNPKG

1.65 kBTypeScriptView Raw
1import { type HTMLChakraProps, type SlotRecipeProps, type UnstyledProp } from "../../styled-system";
2declare const useCardStyles: () => Record<string, import("../..").SystemStyleObject>;
3export { useCardStyles };
4export interface CardRootBaseProps extends SlotRecipeProps<"card">, UnstyledProp {
5}
6export interface CardRootProps extends HTMLChakraProps<"div", CardRootBaseProps> {
7}
8export declare const CardRoot: import("react").ForwardRefExoticComponent<CardRootProps & import("react").RefAttributes<HTMLDivElement>>;
9export declare const CardPropsProvider: React.Provider<CardRootBaseProps>;
10export interface CardBodyProps extends HTMLChakraProps<"div"> {
11}
12export declare const CardBody: import("react").ForwardRefExoticComponent<CardBodyProps & import("react").RefAttributes<HTMLDivElement>>;
13export interface CardHeaderProps extends HTMLChakraProps<"div"> {
14}
15export declare const CardHeader: import("react").ForwardRefExoticComponent<CardHeaderProps & import("react").RefAttributes<HTMLDivElement>>;
16export interface CardFooterProps extends HTMLChakraProps<"div"> {
17}
18export declare const CardFooter: import("react").ForwardRefExoticComponent<CardFooterProps & import("react").RefAttributes<HTMLDivElement>>;
19export interface CardTitleProps extends HTMLChakraProps<"h2"> {
20}
21export declare const CardTitle: import("react").ForwardRefExoticComponent<CardTitleProps & import("react").RefAttributes<HTMLHeadingElement>>;
22export interface CardDescriptionProps extends HTMLChakraProps<"p"> {
23}
24export declare const CardDescription: import("react").ForwardRefExoticComponent<CardDescriptionProps & import("react").RefAttributes<HTMLParagraphElement>>;