import React from 'react'; export interface CardProps { /** * 边框模式 */ outlined?: boolean; /** * 阴影 */ elevation?: 0 | 1; style?: React.CSSProperties; onClick?: (event: React.MouseEvent) => void; } /** * Card 根组件 */ declare const StyledCard: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, { className: string; } & import("@sinoui/core/Paper").PaperProps & Partial, HTMLDivElement>, "key" | keyof React.HTMLAttributes> & { ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject | null | undefined; } & CardProps> & { [others: string]: any; } & CardProps, string | number>; export default StyledCard;