import type { HasComponent, HTMLAttributesWithRootRef } from '../../types'; export interface CardProps extends HTMLAttributesWithRootRef, HasComponent { /** * Внешний вид карточки. */ mode?: 'tint' | 'shadow' | 'outline' | 'outline-tint' | 'plain'; } /** * @see https://vkui.io/components/card */ export declare const Card: ({ mode, Component, ...restProps }: CardProps) => React.ReactNode; //# sourceMappingURL=Card.d.ts.map