import { GdsDiv } from '../div/div.component'; import type { Variant } from './card.types'; /** * A container for content representing a single entity. e.g. a contact, article, or task. * * `gds-card` inherits all properties from `gds-div`, but comes with some predefined defaults * and a shortcut property for specifying different card variants. * * @element gds-card * */ export declare class GdsCard extends GdsDiv { static styles: (import("lit").CSSResult | import("lit").CSSResult[])[]; variant: Variant; constructor(); render(): any; }