import React from 'react'; import { shadow } from '../theme/shadow'; import { Size } from '../types'; declare type PartSize = Extract; export declare type CardProps = { size?: PartSize; shadow?: keyof typeof shadow; src?: string; title?: React.ReactNode; subTitle?: React.ReactNode; loading?: boolean; children?: React.ReactNode; className?: string; }; export declare const Card: ({ shadow, title, subTitle, ...props }: CardProps) => JSX.Element; export {};