import React from 'react'; import type { GetRef } from '../utils/refs'; import type { CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; interface CardProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { borderColor?: string; borderPosition?: 'all' | 'bottom' | 'left' | 'right' | 'top'; children?: React.ReactNode; getRef?: GetRef; height?: { base?: number | string; min?: number | string; max?: number | string; }; id?: string; linkProps?: Record; linkComponent?: 'a' | React.ComponentType; refProp?: string; width?: { base?: number | string; min?: number | string; max?: number | string; }; } export declare function Card({ _modifierClass, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, borderColor, borderPosition, children, getRef, height, id, linkComponent, linkProps, margin, refProp, width, ...rest }: CardProps): React.JSX.Element; export {};