import { ComponentPropsWithRef, ElementType, PropsWithChildren } from "react"; export interface CardProps extends PropsWithChildren, ComponentPropsWithRef<"div"> { as?: ElementType; } export declare const Card: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Card;