import { SpectrumCardProps } from './types'; import { Node } from '@react-types/shared'; import React, { HTMLAttributes } from 'react'; interface CardBaseProps extends SpectrumCardProps { articleProps?: HTMLAttributes; item?: Node; } /** * TODO: Add description of component here. */ export declare const CardBase: React.ForwardRefExoticComponent & React.RefAttributes>>; export {};