import * as React$1 from "react"; import * as react_jsx_runtime0 from "react/jsx-runtime"; //#region src/react/ui/card.d.ts /** Container for grouping related content with header, body, and footer sections */ declare function Card({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element; /** Header section containing title, description, and actions */ declare function CardHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element; /** Title heading for the card */ declare function CardTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element; /** Descriptive text providing context for the card */ declare function CardDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element; /** Action buttons or controls positioned in the card header */ declare function CardAction({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element; /** Main content area of the card */ declare function CardContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element; /** Footer section for additional actions or information */ declare function CardFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime0.JSX.Element; //#endregion export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle }; //# sourceMappingURL=card.d.ts.map