import * as React from "react"; export interface CardProps { style?: React.CSSProperties; cover?: React.ReactNode; actions?: React.ReactNode[]; children?: React.ReactNode; } declare const Card: ({ style, cover, actions, children, ...rest }: CardProps) => import("react/jsx-runtime").JSX.Element; export default Card;