import * as React from 'react'; import { CardBorder, CardColor, CardProps, CardState } from './Card.types'; /** * @deprecated Card har ingen en-til-en erstatter. Panel, Card, Alert, OpenClose eller * Accordion kan benyttes avhengig av hvilken funskjonalitet man trenger fra Card. * visibleName Card (Innholdskort) */ export declare class Card extends React.PureComponent { static Color: typeof CardColor; static Border: typeof CardBorder; static defaultProps: { title: undefined; titleTagName: string; subtitle: undefined; titlesize: string; expand: boolean; isExpanded: boolean; color: CardColor; marginbottom: string; margin: string; buttonType: string; }; constructor(props: CardProps); componentDidUpdate(prevProps: CardProps, prevState: CardState): void; render(): JSX.Element; _toggleExpand: () => void; }