import { ForwardRefExoticComponent } from 'react'; import { PropsWithExtend } from '../../types/shared'; export type CardProps = PropsWithExtend<{ selected?: boolean; }> & (React.ComponentPropsWithoutRef<'a'> & React.ComponentPropsWithoutRef<'div'>) & React.RefAttributes; /** @deprecated */ export const Card: ForwardRefExoticComponent; export {};