export interface CardProps { 'aria-label'?: string; /** @default 'div' */ as?: React.ElementType; isExpanded?: boolean; title: React.ReactNode; details: React.ReactNode; icon?: React.ReactNode; children?: React.ReactNode; id?: string; className?: string; 'data-testid'?: string; onClick?: (nextIsExpanded: boolean) => void; } /** * @deprecated Use [new ListItem component](?path=/docs/content-listitem--docs) instead. * @see https://transferwise.atlassian.net/wiki/spaces/DS/pages/2387314550/Instructions+for+killing+expanding+cards+on+web+design+pattern */ declare const Card: import("react").ForwardRefExoticComponent>; export default Card; //# sourceMappingURL=Card.d.ts.map