export interface CardProps extends Omit, "title" | "content"> { glass?: boolean; imageSrc?: string; /** image positon * @default "top" */ imagePositon?: "top" | "right" | "bottom" | "left" | "overlay"; shadow?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl"; title?: React.ReactNode; content?: React.ReactNode; action?: React.ReactNode; slots?: { figure?: string; body?: string; title?: string; content?: string; actions?: string; }; } /** ref属性会转发至内部的根div元素 */ export declare function Card(props: CardProps): import("react").JSX.Element;