import { PropsWithChildren } from 'react'; import { BaseProps } from '../types.js'; import '@emotion/react'; interface CardProps extends PropsWithChildren { size?: "default" | "large" | "small"; inline?: boolean; } export { CardProps };