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