import { JSX } from 'react'; import { PolymorphicComponentPropWithRef, Sizes } from '../react-types'; export type CardProps = PolymorphicComponentPropWithRef; type CardComponent = (props: CardProps) => JSX.Element; export declare const Card: CardComponent; export type GroupProps = PolymorphicComponentPropWithRef; type GroupComponent = (props: GroupProps) => JSX.Element; export declare const Group: GroupComponent; export {};